zhoushihao
2025-10-15 98d910d50caec227bee5f9e7dfae4d7046089a5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mes.hollowqueue.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.hollowqueue.entity.HollowGlassQueueInfo;
 
import java.util.List;
 
/**
 * (HollowGlassQueueInfo)表数据库访问层
 *
 * @author makejava
 * @since 2024-11-30 10:19:54
 */
public interface HollowGlassQueueInfoMapper extends BaseMapper<HollowGlassQueueInfo> {
 
    /**
     * 查询需要仅卧转立的玻璃小片
     *
     * @return
     */
    List<String> queryNeedInCarGlass();
}