New file |
| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.ycl.platform.domain.entity.TExamineScore; |
| | | import com.ycl.platform.domain.vo.TExamineScoreVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 考核计分Mapper接口 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-03-13 |
| | | */ |
| | | public interface TExamineScoreMapper |
| | | { |
| | | /** |
| | | * 查询考核计分 |
| | | * |
| | | * @param id 考核计分主键 |
| | | * @return 考核计分 |
| | | */ |
| | | public TExamineScore selectTExamineScoreById(Long id); |
| | | |
| | | /** |
| | | * 查询考核计分列表 |
| | | * |
| | | * @param tExamineScore 考核计分 |
| | | * @return 考核计分集合 |
| | | */ |
| | | public List<TExamineScoreVO> selectTExamineScoreList(TExamineScore tExamineScore); |
| | | |
| | | /** |
| | | * 新增考核计分 |
| | | * |
| | | * @param tExamineScore 考核计分 |
| | | * @return 结果 |
| | | */ |
| | | public int insertTExamineScore(TExamineScore tExamineScore); |
| | | |
| | | /** |
| | | * 修改考核计分 |
| | | * |
| | | * @param tExamineScore 考核计分 |
| | | * @return 结果 |
| | | */ |
| | | public int updateTExamineScore(TExamineScore tExamineScore); |
| | | |
| | | /** |
| | | * 删除考核计分 |
| | | * |
| | | * @param id 考核计分主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteTExamineScoreById(Long id); |
| | | |
| | | /** |
| | | * 批量删除考核计分 |
| | | * |
| | | * @param ids 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteTExamineScoreByIds(Long[] ids); |
| | | } |