自动化立体仓库 - WCS系统
#
lsh
2024-06-21 352b3946e1afb9a27c96f58bb138e2ba5a010ec0
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasJarMapper;
import com.zy.asrs.entity.BasJar;
import com.zy.asrs.service.BasJarService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basJarService")
public class BasJarServiceImpl extends ServiceImpl<BasJarMapper, BasJar> implements BasJarService {
 
}