自动化立体仓库 - WMS系统
#
lsh
2024-12-27 f66fd8ba90a75a2002ba7783a870035e7908d89f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.BasWhs;
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> {
 
    BasWhs selectByIdentifying(@Param("identifying") String identifying);
 
}