| | |
| | | |
| | | 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; |
| | | |
| | |
| | | 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); |
| | | } |