|
@@ -23,7 +23,9 @@ public enum GigTypeEnum {
|
|
|
ZHENG_QI_ZHI_XING(4, "正启之星", "正启之星", ZhengQiZhiXingCertStatus.class),
|
|
|
LANG_CHAO(5, "浪潮", "浪潮", LangChaoCertStatus.class),
|
|
|
HUI_QI_YUN(6, "汇企云", "汇企云", HuiQiYunCertStatus.class),
|
|
|
- ZHONG_YI_YUN(7, "众蚁云", "众蚁云", ZhongYiYunCertStatus.class);
|
|
|
+ ZHONG_YI_YUN(7, "众蚁云", "众蚁云", ZhongYiYunCertStatus.class),
|
|
|
+ HAN_TANG(8, "汉唐", "汉唐", HanTangCertStatus.class),
|
|
|
+ ZHONG_ZHI(9, "中智", "中智", ZhongZhiCertStatus.class);
|
|
|
|
|
|
@EnumValue
|
|
|
private int code;
|
|
@@ -77,6 +79,12 @@ public enum GigTypeEnum {
|
|
|
case ZHONG_YI_YUN:
|
|
|
certStatusStr = ZhongYiYunCertStatus.resolve(certStatus).name();
|
|
|
break;
|
|
|
+ case HAN_TANG:
|
|
|
+ certStatusStr = HanTangCertStatus.resolve(certStatus).name();
|
|
|
+ break;
|
|
|
+ case ZHONG_ZHI:
|
|
|
+ certStatusStr = ZhongZhiCertStatus.resolve(certStatus).name();
|
|
|
+ break;
|
|
|
default:
|
|
|
}
|
|
|
|
|
@@ -117,6 +125,12 @@ public enum GigTypeEnum {
|
|
|
case ZHONG_YI_YUN:
|
|
|
certStatusStr = ZhongYiYunCertStatus.resolve(certStatus).getMessage();
|
|
|
break;
|
|
|
+ case HAN_TANG:
|
|
|
+ certStatusStr = HanTangCertStatus.resolve(certStatus).getMessage();
|
|
|
+ break;
|
|
|
+ case ZHONG_ZHI:
|
|
|
+ certStatusStr = ZhongZhiCertStatus.resolve(certStatus).getMessage();
|
|
|
+ break;
|
|
|
default:
|
|
|
}
|
|
|
|