自动化立体仓库 - WMS系统
skyouc
5 天以前 3f2643f77411671088ee432b72b69f0931ac7bb9
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 {
 
}