996f2cf0b29a5b50f9141bfd07c29149893bf4d6.svn-base 952 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.ChkSafeStatList;
  4. import cn.com.goldenwater.dcproj.param.ChkSafeStatListParam;
  5. import javax.servlet.http.HttpServletResponse;
  6. import java.util.List;
  7. /**
  8. * 成都市水务行业安全大检查情况统计Service接口
  9. *
  10. * @author ruoyi
  11. * @date 2023-02-22
  12. */
  13. public interface ChkSafeStatListService extends CrudService<ChkSafeStatList, ChkSafeStatListParam>
  14. {
  15. /**
  16. * 导出
  17. *
  18. * @param chkSafeStatListParam
  19. * @param response
  20. */
  21. void export(ChkSafeStatListParam chkSafeStatListParam, HttpServletResponse response);
  22. /**
  23. * 批量上报
  24. * @param ids
  25. * @return
  26. */
  27. int batchReportByIds(String[] ids );
  28. /**
  29. * 批量添加
  30. * @param chkSafeStatListList
  31. * @return
  32. */
  33. int insertBatchFile(List<ChkSafeStatList> chkSafeStatListList);
  34. }