| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.ycl.platform.domain.entity.CheckTemplate; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.vo.CheckTemplateVO; |
| | | import com.ycl.platform.domain.form.CheckTemplateForm; |
| | | |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | /** |
| | | * 考核模板 Mapper 接口 |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-06 |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | @Mapper |
| | | public interface CheckTemplateMapper extends BaseMapper<CheckTemplate> { |
| | | public interface CheckTemplateMapper |
| | | { |
| | | /** |
| | | * 查询考核模板 |
| | | * |
| | | * @param id 考核模板主键 |
| | | * @return 考核模板 |
| | | */ |
| | | public CheckTemplate selectCheckTemplateById(Long id); |
| | | |
| | | /** |
| | | * 查询考核模板列表 |
| | | * |
| | | * @param checkTemplate 考核模板 |
| | | * @return 考核模板集合 |
| | | */ |
| | | public List<CheckTemplate> selectCheckTemplateList(CheckTemplate checkTemplate); |
| | | |
| | | /** |
| | | * 新增考核模板 |
| | | * |
| | | * @param checkTemplate 考核模板 |
| | | * @return 结果 |
| | | */ |
| | | public int insertCheckTemplate(CheckTemplate checkTemplate); |
| | | |
| | | /** |
| | | * 修改考核模板 |
| | | * |
| | | * @param checkTemplate 考核模板 |
| | | * @return 结果 |
| | | */ |
| | | public int updateCheckTemplate(CheckTemplate checkTemplate); |
| | | |
| | | /** |
| | | * 删除考核模板 |
| | | * |
| | | * @param id 考核模板主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteCheckTemplateById(Long id); |
| | | |
| | | /** |
| | | * 批量删除考核模板 |
| | | * |
| | | * @param ids 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteCheckTemplateByIds(Long[] ids); |
| | | } |