|
@@ -39,7 +39,7 @@ public class ProvinceUtil {
|
|
|
|
|
|
public static final String HB = "42";
|
|
|
|
|
|
-
|
|
|
+ public static final String HN_ORIGINAL = "43";
|
|
|
public static final String HN = "90";
|
|
|
|
|
|
public static final String GD = "44";
|
|
@@ -149,6 +149,10 @@ public class ProvinceUtil {
|
|
|
};
|
|
|
|
|
|
public static String get(String str) {
|
|
|
+
|
|
|
+ if(HN_ORIGINAL.equals(str)){
|
|
|
+ str = HN;
|
|
|
+ }
|
|
|
return map.get(str);
|
|
|
}
|
|
|
|