package cn.com.goldenwater.dcproj.dao; import cn.com.goldenwater.dcproj.model.ChkSafeStatList; import cn.com.goldenwater.dcproj.param.ChkSafeStatListParam; import cn.com.goldenwater.core.persistence.CrudDao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.Date; import java.util.List; /** * 成都市水务行业安全大检查情况统计Mapper接口 * * @author ruoyi * @date 2023-02-22 */ @Repository public interface ChkSafeStatListDao extends CrudDao { int batchReportByIds(@Param("ids") String[] ids , @Param("uptm") Date uptm); int insertBatchFile(List chkSafeStatListList); /** * 按行业(领域) 进行分类统计 * @param safeStatListParam * @return */ List countTotalByIndustry(ChkSafeStatListParam safeStatListParam); }