Constant.java
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.erry.iclear.dateInterface.common;
import com.erry.iclear.dateInterface.entity.ChmCarryPort;
import com.erry.iclear.dateInterface.entity.DictionaryEntries;
import com.erry.iclear.dateInterface.entity.DomesticDestinationMapping;
import com.erry.iclear.dateInterface.entity.OrigplacecodeMapping;
import org.springframework.stereotype.Component;
import java.util.HashMap;
import java.util.Map;
/**
* @author Administrator
*/
@Component
public class Constant {
public static Map<String,HashMap<String,String>> appIdSecurityCache = new HashMap<>();
//字典表
public static Map<String , DictionaryEntries> dictionaryEntriesCache = new HashMap<>();
//货源地
public static Map<String,DomesticDestinationMapping> domesticDestinationMappingCache = new HashMap();
//目的港口
public static Map<String, OrigplacecodeMapping> origplacecodeMappingCache = new HashMap<>();
//港口表
public static Map<String, ChmCarryPort> chmCarryPortCache = new HashMap<>();
public static String MSG_TYPE_C="C";
public static String MSG_TYPE_D="D";
public static String LEVY_TYPE="levyType_";
public static String TRANSACTION_UNIT="transactionUnit_";
public static String COUNTRY = "Country_";
public static String CURRENCY_SYSTEM = "currencySystem_";
public static String VEHICLE_WAY_CODE = "VehicleWayCode_";
public static String CLINCH_TYPE = "ClinchType_";
public static String NEW_PACKAGE_TYPE = "NewPackageType_";
}