|
@@ -22,7 +22,8 @@ public enum GigTypeEnum {
|
|
|
YEE(3, "易联数科", "易联数科", YeeCertStatus.class),
|
|
|
ZHENG_QI_ZHI_XING(4, "正启之星", "正启之星", ZhengQiZhiXingCertStatus.class),
|
|
|
LANG_CHAO(5, "浪潮", "浪潮", LangChaoCertStatus.class),
|
|
|
- HUI_QI_YUN(6, "汇企云", "汇企云", HuiQiYunCertStatus.class);
|
|
|
+ HUI_QI_YUN(6, "汇企云", "汇企云", HuiQiYunCertStatus.class),
|
|
|
+ ZHONG_YI_YUN(7, "众蚁云", "众蚁云", ZhongYiYunCertStatus.class);
|
|
|
|
|
|
@EnumValue
|
|
|
private int code;
|
|
@@ -73,6 +74,9 @@ public enum GigTypeEnum {
|
|
|
case HUI_QI_YUN:
|
|
|
certStatusStr = HuiQiYunCertStatus.resolve(certStatus).name();
|
|
|
break;
|
|
|
+ case ZHONG_YI_YUN:
|
|
|
+ certStatusStr = ZhongYiYunCertStatus.resolve(certStatus).name();
|
|
|
+ break;
|
|
|
default:
|
|
|
}
|
|
|
|
|
@@ -110,6 +114,9 @@ public enum GigTypeEnum {
|
|
|
case HUI_QI_YUN:
|
|
|
certStatusStr = HuiQiYunCertStatus.resolve(certStatus).getMessage();
|
|
|
break;
|
|
|
+ case ZHONG_YI_YUN:
|
|
|
+ certStatusStr = ZhongYiYunCertStatus.resolve(certStatus).getMessage();
|
|
|
+ break;
|
|
|
default:
|
|
|
}
|
|
|
|