| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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.BisInspWagaSapRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspWagaSapRgstrParam;
- import cn.com.goldenwater.dcproj.param.FileParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.LinkedHashMap;
- import java.util.List;
- /**
- * @author lune
- * @date 2020-5-19
- */
- public interface BisInspWagaSapRgstrService extends CrudService<BisInspWagaSapRgstr, BisInspWagaSapRgstrParam> {
- // ------------------------- 自定方法 -------------------------
- /**
- * 修改堤防险工险段督查信息并记录到纠错信息表
- *
- * @param bisInspWagaSapRgstr 堤防险工险段督查登记表实体类
- * @return String
- */
- String updateSapRgstrAndInsertSapBaseCrrct(BisInspWagaSapRgstr bisInspWagaSapRgstr);
- /**
- * 获取堤防险工险段督查列表
- *
- * @param typeParam 传参对象
- * @return BisInspRgstrDto
- */
- PageInfo<BisInspRgstrDto> getSapRgstrList(TypeParam typeParam);
- void downloadTemplate(HttpServletResponse response, TypeParam param) throws Exception;
- int insertIntoData(List<LinkedHashMap<String, Object>> showDataList, FileParam param) throws Exception;
- int setMessage(BisInspWagaSapRgstr sapRgstr);
- }
|