| | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.entity.DefaultScore; |
| | | import com.ycl.platform.domain.entity.ContractScore; |
| | | |
| | | /** |
| | | * 合同打分Mapper接口 |
| | |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | public interface DefaultScoreMapper extends BaseMapper<DefaultScore> |
| | | public interface DefaultScoreMapper extends BaseMapper<ContractScore> |
| | | { |
| | | /** |
| | | * 查询合同打分 |
| | |
| | | * @param id 合同打分主键 |
| | | * @return 合同打分 |
| | | */ |
| | | public DefaultScore selectDefaultScoreById(Long id); |
| | | public ContractScore selectDefaultScoreById(Long id); |
| | | |
| | | /** |
| | | * 查询合同打分列表 |
| | | * |
| | | * @param defaultScore 合同打分 |
| | | * @param contractScore 合同打分 |
| | | * @return 合同打分集合 |
| | | */ |
| | | public List<DefaultScore> selectDefaultScoreList(DefaultScore defaultScore); |
| | | public List<ContractScore> selectDefaultScoreList(ContractScore contractScore); |
| | | |
| | | /** |
| | | * 新增合同打分 |
| | | * |
| | | * @param defaultScore 合同打分 |
| | | * @param contractScore 合同打分 |
| | | * @return 结果 |
| | | */ |
| | | public int insertDefaultScore(DefaultScore defaultScore); |
| | | public int insertDefaultScore(ContractScore contractScore); |
| | | |
| | | /** |
| | | * 修改合同打分 |
| | | * |
| | | * @param defaultScore 合同打分 |
| | | * @param contractScore 合同打分 |
| | | * @return 结果 |
| | | */ |
| | | public int updateDefaultScore(DefaultScore defaultScore); |
| | | public int updateDefaultScore(ContractScore contractScore); |
| | | |
| | | /** |
| | | * 删除合同打分 |