package com.changhong.epc.constter.parsing.bill;
|
|
/**
|
* 城市别名映射城市名称
|
* @ClassName: ConstCityMapping
|
|
* @author [九鼎联合科技]
|
* @date 2017年4月12日 下午10:52:34
|
*/
|
public interface ConstCityMapping {
|
|
/**
|
* 城市映射组名
|
*/
|
String CITY_GROUP_NAME = "cityMapping";
|
|
/**
|
* 城市别名
|
*/
|
String CITY_ALIAS_MAPPING = "cityMappingAlias";
|
|
/**
|
* 城市名称
|
*/
|
String CITY_NAME_MAPPING = "cityMappingName";
|
}
|