自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-10 b8162b2c9193df92a704a78cc49db6d7da152f89
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasLocType;
import com.zy.asrs.mapper.BasLocTypeMapper;
import com.zy.asrs.service.BasLocTypeService;
import org.springframework.stereotype.Service;
 
@Service("basLocTypeService")
public class BasLocTypeServiceImpl extends ServiceImpl<BasLocTypeMapper, BasLocType> implements BasLocTypeService {
 
}