| 1234567891011121314151617181920212223 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.dcproj.model.ChkSafeStatListIndustry;
- import cn.com.goldenwater.dcproj.param.ChkSafeStatListIndustryParam;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 成都市水务行业安全大检查行业(领域)Mapper接口
- *
- * @author ruoyi
- * @date 2023-02-22
- */
- @Repository
- public interface ChkSafeStatListIndustryDao extends CrudDao<ChkSafeStatListIndustry, ChkSafeStatListIndustryParam>
- {
- List<ChkSafeStatListIndustry> findRootList();
- }
|