cc992ef119b2639a472e53b517adc935b1026942.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.BisInspWagaSapRgstr;
  5. import cn.com.goldenwater.dcproj.param.BisInspWagaSapRgstrParam;
  6. import cn.com.goldenwater.dcproj.param.FileParam;
  7. import cn.com.goldenwater.dcproj.param.TypeParam;
  8. import com.github.pagehelper.PageInfo;
  9. import javax.servlet.http.HttpServletResponse;
  10. import java.util.LinkedHashMap;
  11. import java.util.List;
  12. /**
  13. * @author lune
  14. * @date 2020-5-19
  15. */
  16. public interface BisInspWagaSapRgstrService extends CrudService<BisInspWagaSapRgstr, BisInspWagaSapRgstrParam> {
  17. // ------------------------- 自定方法 -------------------------
  18. /**
  19. * 修改堤防险工险段督查信息并记录到纠错信息表
  20. *
  21. * @param bisInspWagaSapRgstr 堤防险工险段督查登记表实体类
  22. * @return String
  23. */
  24. String updateSapRgstrAndInsertSapBaseCrrct(BisInspWagaSapRgstr bisInspWagaSapRgstr);
  25. /**
  26. * 获取堤防险工险段督查列表
  27. *
  28. * @param typeParam 传参对象
  29. * @return BisInspRgstrDto
  30. */
  31. PageInfo<BisInspRgstrDto> getSapRgstrList(TypeParam typeParam);
  32. void downloadTemplate(HttpServletResponse response, TypeParam param) throws Exception;
  33. int insertIntoData(List<LinkedHashMap<String, Object>> showDataList, FileParam param) throws Exception;
  34. int setMessage(BisInspWagaSapRgstr sapRgstr);
  35. }