| 12345678910111213141516171819202122232425262728293031 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.ChkSafeSelsProj;
- import cn.com.goldenwater.dcproj.param.ChkSafeSelsProjParam;
- import java.util.List;
- /**
- * 成都市水务安全生产"护安"监管执法专项行动项目类型Service接口
- *
- * @author ruoyi
- * @date 2023-02-21
- */
- public interface ChkSafeSelsProjService extends CrudService<ChkSafeSelsProj, ChkSafeSelsProjParam>
- {
- /**
- * 查询专项检查表的 项目类型
- * 根据PId查询子列表
- * @param chkSafeSelsProjParam
- * @return
- */
- List<ChkSafeSelsProj> querySelectOptions (ChkSafeSelsProjParam chkSafeSelsProjParam);
- /**
- * 根查询安全生产监督检查台账的 项目类型
- * @param chkSafeSelsProjParam
- * @return
- */
- List<ChkSafeSelsProj> queryLedgerSelectOptions (ChkSafeSelsProjParam chkSafeSelsProjParam);
- }
|