| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.ChkSafeSpvsEnforceLawStat;
- import cn.com.goldenwater.dcproj.param.ChkSafeSpvsEnforceLawStatParam;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * 成都市水务安全生产'护安'监管执法专项行动统计汇总Service接口
- *
- * @author ruoyi
- * @date 2023-02-22
- */
- public interface ChkSafeSpvsEnforceLawStatService extends CrudService<ChkSafeSpvsEnforceLawStat, ChkSafeSpvsEnforceLawStatParam>
- {
- /**
- * 导出
- *
- * @param chkSafeSpvsEnforceLawStatParam
- * @param response
- */
- void export(ChkSafeSpvsEnforceLawStatParam chkSafeSpvsEnforceLawStatParam, HttpServletResponse response);
- /**
- * 批量上报
- * @param ids
- * @return
- */
- int batchReportByIds(String[] ids );
- /**
- * 批量添加
- * @param chkSafeSpvsEnforceLawStatList
- * @return
- */
- int insertBatchFile(List<ChkSafeSpvsEnforceLawStat> chkSafeSpvsEnforceLawStatList);
- }
|