自动化立体仓库 - WMS系统
13
zhang
2025-05-26 1a0409e260b79b030f79a4fad995078a7f1b945c
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);
    }
}