| 1234567891011121314151617181920 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspPreList;
- import cn.com.goldenwater.dcproj.param.BisInspPreListParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-2-19
- */
- public interface BisInspPreListService extends CrudService<BisInspPreList, BisInspPreListParam> {
- PageInfo<BisInspPreList> findAlPageInfo(BisInspPreListParam inspPreListParam);
- // ------------------------- 自定方法 -------------------------
- }
|