Procházet zdrojové kódy

refactor(types): 企业 usedCptList

qinlaiqiao před 4 roky
rodič
revize
9661e42ba0
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      types/src/interface/enterprise.ts

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

@@ -1,4 +1,5 @@
 import { IProCptItem } from './compilation';
+import { IUsedCptItem } from './user';
 
 export enum Relationship {
   ADMIN = 'admin',
@@ -39,7 +40,7 @@ export interface IEnterprise {
   activated: boolean;
   licenceNum: number;
   proCptList: IProCptItem[];
-  usedCptList: string[];
+  usedCptList: IUsedCptItem[];
   // 公司名称
   name: string;
   logo: string;