365a664bbbea841bc1eae6d85d060e635e1cf696.svn-base 610 B

123456789101112131415161718
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.ChkSafeStatListIndustry;
  4. import cn.com.goldenwater.dcproj.param.ChkSafeStatListIndustryParam;
  5. import java.util.List;
  6. /**
  7. * 成都市水务行业安全大检查行业(领域)Service接口
  8. *
  9. * @author ruoyi
  10. * @date 2023-02-22
  11. */
  12. public interface ChkSafeStatListIndustryService extends CrudService<ChkSafeStatListIndustry, ChkSafeStatListIndustryParam>
  13. {
  14. List<ChkSafeStatListIndustry> querySelectOptions(ChkSafeStatListIndustryParam chkSafeStatListIndustryParam);
  15. }