1
zj
2026-06-01 1f19b78818609bf6d0849f8e58b349132a800538
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);
}