自动化立体仓库 - WMS系统
zyx
2023-10-04 7e373d8e24d4611f0106a3ebb4cbc4e39103a3d9
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasLiftOptMapper;
import com.zy.asrs.entity.BasLiftOpt;
import com.zy.asrs.service.BasLiftOptService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basLiftOptService")
public class BasLiftOptServiceImpl extends ServiceImpl<BasLiftOptMapper, BasLiftOpt> implements BasLiftOptService {
 
}