自动化立体仓库 - WMS系统
skyouc
4 天以前 d04fe2f4e7fc1f46ef4e85e640eefdd9127b4db3
src/main/java/com/zy/asrs/mapper/BasWhsMapper.java
@@ -1,12 +1,15 @@
package com.zy.asrs.mapper;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.BasWhs;
import com.zy.asrs.entity.BasWhsType;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@Mapper
@Repository
public interface BasWhsMapper extends BaseMapper<BasWhs> {
public interface BasWhsMapper extends BaseMapper<BasWhsType> {
    BasWhsType selectByIdentifying(@Param("identifying") String identifying);
}