fc8edcae9dfac91c587da4813da7fab5b4f36ed3.svn-base 920 B

123456789101112131415161718192021222324252627282930313233
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.ChkSafeStatList;
  3. import cn.com.goldenwater.dcproj.param.ChkSafeStatListParam;
  4. import cn.com.goldenwater.core.persistence.CrudDao;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 成都市水务行业安全大检查情况统计Mapper接口
  11. *
  12. * @author ruoyi
  13. * @date 2023-02-22
  14. */
  15. @Repository
  16. public interface ChkSafeStatListDao extends CrudDao<ChkSafeStatList, ChkSafeStatListParam>
  17. {
  18. int batchReportByIds(@Param("ids") String[] ids , @Param("uptm") Date uptm);
  19. int insertBatchFile(List<ChkSafeStatList> chkSafeStatListList);
  20. /**
  21. * 按行业(领域) 进行分类统计
  22. * @param safeStatListParam
  23. * @return
  24. */
  25. List<ChkSafeStatList> countTotalByIndustry(ChkSafeStatListParam safeStatListParam);
  26. }