1
zj
7 days ago 03fe4dca7008ea95b60058740e880f31fe5be6dd
1
2
3
4
5
6
7
8
9
10
11
package com.nq.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.nq.pojo.ContractImage;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface ContractImageMapper extends BaseMapper<ContractImage> {
    List<ContractImage> selectByUserIdAndType(@Param("userId") Integer userId, @Param("contractType") String contractType);
}