mirror of
https://github.com/201206030/novel-plus.git
synced 2026-01-28 21:19:45 +08:00
14 lines
241 B
Java
14 lines
241 B
Java
package com.java2nb.novel.mapper;
|
|
|
|
import com.java2nb.novel.vo.BookSettingVO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Administrator
|
|
*/
|
|
public interface FrontBookSettingMapper extends BookSettingMapper {
|
|
|
|
List<BookSettingVO> listVO();
|
|
}
|