自动化立体仓库 - WMS系统
skyouc
2026-01-09 d843848e44a3d81ab47241d925cf4644bf111984
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 {
 
}