自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-15 4cef4cd611b226e2d62de9859049b180b1a23f58
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 {
 
}