自动化立体仓库 - WMS系统
#
lsh
2024-06-21 09bc9edaaf539f366c8db870fc7f8a5524562d53
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 {
 
}