| 123456789101112131415161718192021 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.BisInspOtherRgstrDto;
- import cn.com.goldenwater.dcproj.model.BisInspOtherRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspOtherRgstrParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-7-19
- */
- public interface BisInspOtherRgstrService extends CrudService<BisInspOtherRgstr, BisInspOtherRgstrParam> {
- PageInfo<BisInspOtherRgstrDto> findPcPage(BisInspOtherRgstrParam bisInspFscRgstrParam);
- // ------------------------- 自定方法 -------------------------
- }
|