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