Junjie
7 天以前 72c49f3afa22c4f84760d57001e45a4fadf2d482
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<>();
 
}