Constant.java 1.61 KB
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_";

    public static String TRANSFER_WAY_BILL_STATUS = "transferWaybillStatus_";

    public static String SUPERVISION_MODE ="supervisionMode_";


}