#
zwl
2026-04-03 99d39b9533897c8bda6409d4637b245d86967da2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.utils;
 
import com.zy.asrs.entity.dto.WcsStationDto;
import org.springframework.stereotype.Component;
 
import java.util.HashMap;
import java.util.Map;
 
@Component
public class StationUtils {
 
    public Map<Integer, WcsStationDto> stationMap = new HashMap<>();
 
}