| 123456789101112131415161718 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.ChkSafeStatListIndustry;
- import cn.com.goldenwater.dcproj.param.ChkSafeStatListIndustryParam;
- import java.util.List;
- /**
- * 成都市水务行业安全大检查行业(领域)Service接口
- *
- * @author ruoyi
- * @date 2023-02-22
- */
- public interface ChkSafeStatListIndustryService extends CrudService<ChkSafeStatListIndustry, ChkSafeStatListIndustryParam>
- {
- List<ChkSafeStatListIndustry> querySelectOptions(ChkSafeStatListIndustryParam chkSafeStatListIndustryParam);
- }
|