自动化立体仓库 - WMS系统
lty
2026-01-21 223ce7dcb236cad6679275d8941e1a909f8a1efc
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.AreaMapper;
import com.zy.asrs.entity.Area;
import com.zy.asrs.service.AreaService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("areaService")
public class AreaServiceImpl extends ServiceImpl<AreaMapper, Area> implements AreaService {
 
}