自动化立体仓库 - WCS系统
Junjie
2024-11-23 e039dbc9aa07fabb13be9673cbb7dfccfecda870
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);
 
}