“djh”
2026-02-05 868cf9aef166be2cba108bcc1fa5469195776673
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.gkhy.exam.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.system.domain.ContractReview;
import com.gkhy.exam.system.domain.vo.ContractReviewVo;
import org.apache.ibatis.annotations.Param;
import org.mapstruct.Mapper;
 
import java.util.List;
 
@Mapper
public interface ContractReviewMapper extends BaseMapper<ContractReview> {
    List<ContractReview> selectReviewList(ContractReview contractReview);
 
    Integer selectByContractId(@Param("contractId") Integer contractId);
 
    List<ContractReviewVo> selectByUserId(@Param("userId") Integer userId);
 
    List<ContractReviewVo> selectByUserIdMain(@Param("userId") Integer userId);
 
    void updateByUserid(ContractReview contractReview);
}