#
luxiaotao1123
2022-10-24 81a40c77df2ee8bf368a2aa4751a6f86e7ff5646
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.BasSte;
 
public interface BasSteService extends IService<BasSte> {
 
    BasSte findByCrnNo(Integer crnNo);
 
    Boolean updatePos(Integer steNo, Integer row, Integer bay, Integer lev);
 
    Boolean updatePakMk(Integer steNo, String pakMk);
 
}