| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.ycl.platform.domain.entity.CheckRule; |
| | | import com.ycl.platform.domain.query.CheckRuleQuery; |
| | | import com.ycl.platform.domain.vo.CheckRuleVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * 考核规则Mapper接口 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | * @date 2024-04-15 |
| | | */ |
| | | public interface CheckRuleMapper |
| | | { |
| | |
| | | * @param id 考核规则主键 |
| | | * @return 考核规则 |
| | | */ |
| | | public CheckRuleVO selectCheckRuleById(Long id); |
| | | public CheckRule selectCheckRuleById(Long id); |
| | | |
| | | /** |
| | | * 查询考核规则列表 |
| | | * |
| | | * @param checkRuleQuery 考核规则 |
| | | * @param checkRule 考核规则 |
| | | * @return 考核规则集合 |
| | | */ |
| | | public List<CheckRuleVO> selectCheckRuleList(CheckRuleQuery checkRuleQuery); |
| | | public List<CheckRule> selectCheckRuleList(CheckRule checkRule); |
| | | |
| | | /** |
| | | * 新增考核规则 |