| 123456789101112131415161718192021222324 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspPlanYear;
- import cn.com.goldenwater.dcproj.param.BisInspPlanYearParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- /**
- * @author lhc
- * @date 2022-3-3
- */
- public interface BisInspPlanYearService extends CrudService<BisInspPlanYear, BisInspPlanYearParam> {
- // ------------------------- 自定方法 -------------------------
- PageInfo<BisInspPlanYear> findPageList(BisInspPlanYearParam bisInspPlanYearParam);
- Integer bingObjType(BisInspPlanYear bisInspPlanYear);
- void export(HttpServletResponse response, BisInspPlanYearParam bisInspPlanYearParam);
- void updatePostProcessing(BisInspPlanYear bisInspPlanYear);
- }
|