自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-11 77ce9b966a4965bf1d5bdcb1dbd8e76dd45a8c53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.LocMast;
import com.zy.asrs.mapper.LocMastMapper;
import com.zy.asrs.service.LocMastService;
import org.springframework.stereotype.Service;
 
@Service("locMastService")
public class LocMastServiceImpl extends ServiceImpl<LocMastMapper, LocMast> implements LocMastService {
 
    @Override
    public LocMast queryFreeLocMast(Integer row) {
        return this.baseMapper.queryFreeLocMast(row);
    }
}