49fdd6d0b904212217f18f776adae79a7a554a3a.svn-base 865 B

123456789101112131415161718192021222324252627
  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.BisInspWintRgstr;
  5. import cn.com.goldenwater.dcproj.param.BisInspWintRgstrParam;
  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-8-22
  13. */
  14. public interface BisInspWintRgstrService extends CrudService<BisInspWintRgstr, BisInspWintRgstrParam> {
  15. PageInfo<BisInspRgstrDto> findCityPage(TypeParam typeParam, HttpServletResponse response);
  16. List<BisInspRgstrDto> findCityList(TypeParam typeParam);
  17. int updateWintRgstrState(BisInspWintRgstr rgstr);
  18. // ------------------------- 自定方法 -------------------------
  19. }