package com.ycl.platform.service;
|
|
import com.ycl.platform.domain.entity.TExamineScore;
|
import com.ycl.platform.domain.vo.TExamineScoreVO;
|
|
import java.util.List;
|
|
/**
|
* 考核计分Service接口
|
*
|
* @author ruoyi
|
* @date 2024-03-13
|
*/
|
public interface ITExamineScoreService
|
{
|
/**
|
* 查询考核计分
|
*
|
* @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 ids 需要删除的考核计分主键集合
|
* @return 结果
|
*/
|
public int deleteTExamineScoreByIds(Long[] ids);
|
|
/**
|
* 删除考核计分信息
|
*
|
* @param id 考核计分主键
|
* @return 结果
|
*/
|
public int deleteTExamineScoreById(Long id);
|
}
|