自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-03-12 ae12a81c1edea481678c92d306b8e58e8d9fbae2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.BasSte;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface BasSteMapper extends BaseMapper<BasSte> {
 
    int updatePos(@Param("row")Integer row, @Param("bay")Integer bay, @Param("lev")Integer lev);
 
}