| 123456789101112131415161718192021222324252627282930313233 |
- 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<ChkSafeStatList, ChkSafeStatListParam>
- {
- int batchReportByIds(@Param("ids") String[] ids , @Param("uptm") Date uptm);
- int insertBatchFile(List<ChkSafeStatList> chkSafeStatListList);
- /**
- * 按行业(领域) 进行分类统计
- * @param safeStatListParam
- * @return
- */
- List<ChkSafeStatList> countTotalByIndustry(ChkSafeStatListParam safeStatListParam);
- }
|