#
Junjie
2024-08-12 1948b092d9c104e84dac8abaf6a6346403fc8450
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.asrs.wms.asrs.service.impl;
 
import com.zy.asrs.wms.asrs.mapper.LocTypeBindMapper;
import com.zy.asrs.wms.asrs.entity.LocTypeBind;
import com.zy.asrs.wms.asrs.service.LocTypeBindService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("locTypeBindService")
public class LocTypeBindServiceImpl extends ServiceImpl<LocTypeBindMapper, LocTypeBind> implements LocTypeBindService {
 
}