自动化立体仓库 - WMS系统
#
18516761980
2021-12-06 7203d67cfa3a2fc1cab9b8985dfd35c1797207b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.PltBarcode;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface PltBarcodeMapper extends BaseMapper<PltBarcode> {
 
    @Select("select * from asr_plt_barcode where io_status>=2")
    List<PltBarcode> selectToBeHistoryData();
 
}