liusheng
2024-07-29 0662ed4d69b6270dec5c2214454023dfe8d46308
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.project.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.BaseOnlyvalue;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 业务数据唯一值Mapper接口
 *
 * @author ruoyi
 * @date 2023-09-20
 */
@Mapper
public interface BaseOnlyvalueMapper extends BaseMapper<BaseOnlyvalue> {
    /**
     * 查询业务数据唯一值列表
     *
     * @param baseOnlyvalue 业务数据唯一值
     * @return 业务数据唯一值集合
     */
    public List<BaseOnlyvalue> selectBaseOnlyvalueList(BaseOnlyvalue baseOnlyvalue);
}