| 12345678910111213141516171819202122232425 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspWtuntRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspWtuntRgstrParam;
- import com.github.pagehelper.PageInfo;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- /**
- * @author lune
- * @date 2020-8-17
- */
- public interface BisInspWtuntRgstrService extends CrudService<BisInspWtuntRgstr, BisInspWtuntRgstrParam> {
- /**
- * 获取节约用水列表
- *
- * @param TypeParam
- * @return PageInfo<BisInspWtuntRgstr>
- */
- PageInfo<BisInspWtuntRgstr> findWtuntPage(TypeParam param);
- // ------------------------- 自定方法 -------------------------
- }
|