自动化立体仓库 - WMS系统
dubin
2 天以前 481486ccf088dd011156fe0a79fbd9db979c3895
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 * from man_mat_inout where matnr = #{matnr}")
    InOut selectByMatnr(String matnr);
}