| 1234567891011121314151617181920 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto;
- import cn.com.goldenwater.dcproj.model.BisInspSamrmpRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspSamrmpRgstrParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- /**
- * @author lune
- * @date 2020-9-11
- */
- public interface BisInspSamrmpRgstrService extends CrudService<BisInspSamrmpRgstr, BisInspSamrmpRgstrParam> {
- PageInfo<BisInspRgstrDto> findSamrmpPage(TypeParam param);
- // ------------------------- 自定方法 -------------------------
- }
|