| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.ChkSafeStatList;
- import cn.com.goldenwater.dcproj.param.ChkSafeStatListParam;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * 成都市水务行业安全大检查情况统计Service接口
- *
- * @author ruoyi
- * @date 2023-02-22
- */
- public interface ChkSafeStatListService extends CrudService<ChkSafeStatList, ChkSafeStatListParam>
- {
- /**
- * 导出
- *
- * @param chkSafeStatListParam
- * @param response
- */
- void export(ChkSafeStatListParam chkSafeStatListParam, HttpServletResponse response);
- /**
- * 批量上报
- * @param ids
- * @return
- */
- int batchReportByIds(String[] ids );
- /**
- * 批量添加
- * @param chkSafeStatListList
- * @return
- */
- int insertBatchFile(List<ChkSafeStatList> chkSafeStatListList);
- }
|