ludc
2023-06-15 55517e16da5e7205770bf61fc27c3d06b7d189b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.vci.ubcs.omd.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.vci.ubcs.omd.entity.Status;
 
import java.util.Collection;
import java.util.List;
 
/**
 * Description: 状态池数据层
 *
 * @author LiHang
 * @date 2023/5/23
 */
public interface StatusMapper extends BaseMapper<Status> {
    /**
     * 忽略大小写的查询
     * @param records
     * @return
     */
    List<Status> selectByIdIgnoreCase(Collection<String> records);
}