luxiaotao1123
2024-03-28 9564b5da6e019b29b9779fcc13f9b82c9487befa
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.common.wms.service.impl;
 
import com.zy.asrs.common.wms.mapper.BasMapMapper;
import com.zy.asrs.common.wms.entity.BasMap;
import com.zy.asrs.common.wms.service.BasMapService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basMapService")
public class BasMapServiceImpl extends ServiceImpl<BasMapMapper, BasMap> implements BasMapService {
 
}