Sfoglia il codice sorgente

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 4 anni fa
parent
commit
1d6a2dc08b
2 ha cambiato i file con 2 aggiunte e 4 eliminazioni
  1. 2 1
      types/src/interface/enterprise.ts
  2. 0 3
      types/src/interface/user.ts

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

@@ -9,7 +9,8 @@ export enum Relationship {
 export interface IMember {
   userID: string;
   memberName: string;
-  activated: boolean;
+  position: string;
+  status: 'normal' | 'disabled' | 'unconfirmed';
   cptList: string[];
   createProject: 'yes' | 'no';
   projectView: 'self' | 'all';

+ 0 - 3
types/src/interface/user.ts

@@ -85,10 +85,7 @@ export interface IUser {
   ID: string;
   ssoID: string;
   mobile: string;
-  email: string;
-  qq: string;
   realName: string;
-  avatar: string;
   createTime: number;
   proCptList: IProCptItem[];
   usedCptList: IUsedCptItem[];