自动化立体仓库 - WMS系统
1
dubin
6 天以前 4eb4b44397f0121ddb9000157ce618dfe6e53025
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.InOut;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface InOutMapper extends BaseMapper<InOut> {
    @Select("select top 1 * from man_mat_inout where matnr = #{matnr}")
    InOut selectByMatnr(String matnr);
}