| 1234567891011121314151617181920212223 |
- 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.BisInspSvwtWuntRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspSvwtWuntRgstrParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-9-18
- */
- public interface BisInspSvwtWuntRgstrService extends CrudService<BisInspSvwtWuntRgstr, BisInspSvwtWuntRgstrParam> {
- PageInfo<BisInspRgstrDto> findSvwtWuntPage(TypeParam typeParam, HttpServletResponse response);
- // ------------------------- 自定方法 -------------------------
- List<BisInspRgstrDto> findSvwtWuntList(TypeParam typeParam);
- }
|