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();
|
}
|