#
Junjie
2026-01-22 afc1bebb2eafc87ba81fb9fe39ef0386d1fb3d17
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<>();
 
}