自动化立体仓库 - WCS系统
Junjie
2024-06-12 8a8faba0f55512a2c18c4fe719a1bb0c4f6a86c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.AgvBasDevp;
import com.zy.asrs.mapper.AgvBasDevpMapper;
import com.zy.asrs.service.AgvBasDevpService;
import org.springframework.stereotype.Service;
 
@Service
public class AgvBasDevpServiceImpl extends ServiceImpl<AgvBasDevpMapper, AgvBasDevp> implements AgvBasDevpService {
 
    @Override
    public int updateBarcode(String devNo, String barcode) {
        return this.baseMapper.updateBarcode(devNo,barcode);
    }
}