Ver código fonte

feat(types): 财审 user

qinlaiqiao 4 anos atrás
pai
commit
d89f614ee8
1 arquivos alterados com 19 adições e 0 exclusões
  1. 19 0
      types/src/interface/user.ts

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

@@ -75,6 +75,25 @@ export interface IUser {
   summaryInfo: ISummary;
 }
 
+export interface IAPInstitution {
+  ID: string;
+  name: string;
+}
+
+export interface IAPUser {
+  ID: string;
+  createdTime: number;
+  gender: string;
+  accountType: number;
+  account: string;
+  name: string;
+  phone: string;
+  institution: IAPInstitution;
+  dataID: string;
+  created: string;
+  createdID: string;
+}
+
 // 最近联系人
 export interface IRecentUser extends IUser {
   recentDate: number;