自动化立体仓库 - WMS系统
skyouc
5 天以前 70222363069fa0b8a87491b498b92f22006c2d89
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasDeviceMapper;
import com.zy.asrs.entity.BasDevice;
import com.zy.asrs.service.BasDeviceService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basDeviceService")
public class BasDeviceServiceImpl extends ServiceImpl<BasDeviceMapper, BasDevice> implements BasDeviceService {
 
}