#
tzsk
2024-12-03 5b23b3412acd4024948b7745e2d0c5d8c6ee8e04
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);
 
}