自动化立体仓库 - WMS系统
zjj
2024-09-05 2790d2558ef656ccddb4dbc94409decc8d227a1e
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);
    }
}