Просмотр исходного кода

refactor(types): 企业 usedCptList

qinlaiqiao 4 лет назад
Родитель
Сommit
9661e42ba0
1 измененных файлов с 2 добавлено и 1 удалено
  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;