3d9ea9df4af4d22e558bbff556377e257fdbaf25.svn-base 575 B

1234567891011121314151617181920
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspPreList;
  4. import cn.com.goldenwater.dcproj.param.BisInspPreListParam;
  5. import com.github.pagehelper.PageInfo;
  6. import java.util.List;
  7. /**
  8. * @author lune
  9. * @date 2019-2-19
  10. */
  11. public interface BisInspPreListService extends CrudService<BisInspPreList, BisInspPreListParam> {
  12. PageInfo<BisInspPreList> findAlPageInfo(BisInspPreListParam inspPreListParam);
  13. // ------------------------- 自定方法 -------------------------
  14. }