自动化立体仓库 - WMS系统
dubin
3 天以前 ac8a16a7b4cc04227d38732e7a3e2b7792e4f339
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);
}