自动化立体仓库 - WMS系统
1
zhang
2025-07-15 ef5e9414cabef8811a9ad9f60b180f0ff902763c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.BasCrnp;
import com.zy.asrs.entity.CrnLaneWayInfoDto;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface BasCrnpMapper extends BaseMapper<BasCrnp> {
 
    /**
     * 获取堆垛机状态及所属巷道库位统计信息
     */
    List<CrnLaneWayInfoDto> getCrnLaneWayInfo();
}