fuliqi
2024-09-05 46b29175dfdafafd014212be0e340544b8761493
ycl-server/src/main/java/com/ycl/platform/mapper/CheckTemplateRuleMapper.java
@@ -2,12 +2,13 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.entity.CheckTemplateRule;
import com.ycl.platform.domain.vo.RuleExcelVO;
import java.util.List;
/**
 * 考核模板-规则中间Mapper接口
 *
 *
 * @author ruoyi
 * @date 2024-04-01
 */
@@ -15,7 +16,7 @@
{
    /**
     * 查询考核模板-规则中间
     *
     *
     * @param id 考核模板-规则中间主键
     * @return 考核模板-规则中间
     */
@@ -23,7 +24,7 @@
    /**
     * 查询考核模板-规则中间列表
     *
     *
     * @param checkTemplateRule 考核模板-规则中间
     * @return 考核模板-规则中间集合
     */
@@ -31,7 +32,7 @@
    /**
     * 新增考核模板-规则中间
     *
     *
     * @param checkTemplateRule 考核模板-规则中间
     * @return 结果
     */
@@ -39,7 +40,7 @@
    /**
     * 修改考核模板-规则中间
     *
     *
     * @param checkTemplateRule 考核模板-规则中间
     * @return 结果
     */
@@ -47,7 +48,7 @@
    /**
     * 删除考核模板-规则中间
     *
     *
     * @param id 考核模板-规则中间主键
     * @return 结果
     */
@@ -55,7 +56,7 @@
    /**
     * 批量删除考核模板-规则中间
     *
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
@@ -64,4 +65,6 @@
    List<CheckTemplateRule> selectListByTemplateId(Integer id);
    void deleteByTemplateId(Integer templateId);
    List<RuleExcelVO> getAllRuleTemplate();
}