自动化立体仓库 - WMS系统
pjb
12 小时以前 d6cb644d0ccc0f73f68d60b3a43e82320d8c97f0
src/main/java/com/zy/asrs/service/impl/BasWhsServiceImpl.java
@@ -1,5 +1,6 @@
package com.zy.asrs.service.impl;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasWhs;
import com.zy.asrs.mapper.BasWhsMapper;
@@ -8,5 +9,8 @@
@Service("basWhsService")
public class BasWhsServiceImpl extends ServiceImpl<BasWhsMapper, BasWhs> implements BasWhsService {
    @Override
    public BasWhs selectByIdentifying(String identifying) {
        return this.baseMapper.selectByIdentifying(identifying);
    }
}