Browse Source

refactor(types): 企业类型

qinlaiqiao 5 years atrás
parent
commit
575f104e5a
1 changed files with 3 additions and 2 deletions
  1. 3 2
      types/src/interface/enterprise.ts

+ 3 - 2
types/src/interface/enterprise.ts

@@ -34,8 +34,9 @@ interface IProCptItem {
 export interface IEnterprise {
   ID: string;
   adminID: string;
+  adminName: string;
   members: IMember[];
-  active: boolean;
+  activated: boolean;
   licenceNum: number;
   proCptList: IProCptItem[];
   usedCptList: string[];
@@ -43,7 +44,7 @@ export interface IEnterprise {
   logo: string;
   enterpriseLocation: string[];
   enterpriseType: string;
-  companyScale: string;
+  enterpriseScale: string;
   createTime: number;
   passwordCheck: 'no' | 'weak' | 'normal' | 'strong' | 'super';
   ip: string;