#
Junjie
2024-06-15 dd0b5f6db95daf50d658c08a9ccb0a8448c2c447
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);
    }
}