| 12345678910111213141516171819202122232425262728293031 |
- 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.dto.BisInspRsmlRgstrDto;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspRsmlRgstrParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-3-9
- */
- public interface BisInspRsmlRgstrService extends CrudService<BisInspRsmlRgstr, BisInspRsmlRgstrParam> {
- PageInfo<BisInspRsmlRgstrDto> getRsmlPage(BisInspRsmlRgstrParam bisInspRsmlRgstrParam);
- PageInfo<BisInspRgstrDto> findRsmlPage(TypeParam typeParam, HttpServletResponse response);
- List findRsmlList(TypeParam typeParam);
- void updateRsvr(String rgstrId, String status, String input);
- // ------------------------- 自定方法 -------------------------
- }
|