a935161d3d27d20ca046ee6ff1410faa292d182b.svn-base 836 B

1234567891011121314151617181920212223
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto;
  4. import cn.com.goldenwater.dcproj.model.BisInspSvwtWuntRgstr;
  5. import cn.com.goldenwater.dcproj.param.BisInspSvwtWuntRgstrParam;
  6. import cn.com.goldenwater.dcproj.param.TypeParam;
  7. import com.github.pagehelper.PageInfo;
  8. import javax.servlet.http.HttpServletResponse;
  9. import java.util.List;
  10. /**
  11. * @author lune
  12. * @date 2019-9-18
  13. */
  14. public interface BisInspSvwtWuntRgstrService extends CrudService<BisInspSvwtWuntRgstr, BisInspSvwtWuntRgstrParam> {
  15. PageInfo<BisInspRgstrDto> findSvwtWuntPage(TypeParam typeParam, HttpServletResponse response);
  16. // ------------------------- 自定方法 -------------------------
  17. List<BisInspRgstrDto> findSvwtWuntList(TypeParam typeParam);
  18. }