自动化立体仓库 - WCS系统
#
lsh
2024-06-25 f30358a20ae9a74ee7f6c604a8d102c1b9b24659
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.service.impl;
 
import com.zy.asrs.mapper.BasJarMapper;
import com.zy.asrs.entity.BasJar;
import com.zy.asrs.service.BasJarService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basJarService")
public class BasJarServiceImpl extends ServiceImpl<BasJarMapper, BasJar> implements BasJarService {
 
    @Override
    public BasJar selectByJarNo(Integer jarNo){
        return this.baseMapper.selectByJarNo(jarNo);
    };
}