| | |
| | | package com.ycl.platform.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.platform.domain.entity.CheckResult; |
| | | import com.ycl.platform.domain.entity.ContractResultRecord; |
| | | import com.ycl.platform.domain.vo.CheckResultVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | public interface ICheckResultService |
| | | public interface ICheckResultService extends IService<CheckResult> |
| | | { |
| | | /** |
| | | * 查询考核结果 |
| | |
| | | * @param checkResult 考核结果 |
| | | * @return 考核结果集合 |
| | | */ |
| | | public List<CheckResult> selectCheckResultList(CheckResult checkResult); |
| | | public List<CheckResultVO> selectCheckResultList(CheckResult checkResult); |
| | | public List<CheckResult> selectCheckResult(CheckResult checkResult); |
| | | |
| | | /** |
| | | * 新增考核结果 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteCheckResultById(Long id); |
| | | |
| | | /** |
| | | * 批量保存考核结果 |
| | | * @param contractResultRecord 集合 |
| | | */ |
| | | void saveBatchRecord(List<ContractResultRecord> contractResultRecord); |
| | | } |