自动化立体仓库 - WCS系统
Junjie
2024-12-21 802c12dcbc63ee1662c15723d27c8fc1f4fd36e6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.AgvBasDevp;
 
import java.util.List;
import java.util.Map;
 
public interface AgvBasDevpService extends IService<AgvBasDevp> {
 
    int updateBarcode(String devNo, String barcode);
 
}