自动化立体仓库 - WCS系统
#
yxFwq
2024-07-19 33320b92e60422bfc7c93ee90ba7ed976403457c
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 {
 
}