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); } }