737741805eed0e297c7d9a0f3a1687600ff96a63.svn-base 600 B

1234567891011121314151617181920212223
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.ChkSafeStatListIndustry;
  3. import cn.com.goldenwater.dcproj.param.ChkSafeStatListIndustryParam;
  4. import cn.com.goldenwater.core.persistence.CrudDao;
  5. import org.springframework.stereotype.Repository;
  6. import java.util.List;
  7. /**
  8. * 成都市水务行业安全大检查行业(领域)Mapper接口
  9. *
  10. * @author ruoyi
  11. * @date 2023-02-22
  12. */
  13. @Repository
  14. public interface ChkSafeStatListIndustryDao extends CrudDao<ChkSafeStatListIndustry, ChkSafeStatListIndustryParam>
  15. {
  16. List<ChkSafeStatListIndustry> findRootList();
  17. }