|
@@ -75,6 +75,25 @@ export interface IUser {
|
|
|
summaryInfo: ISummary;
|
|
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 {
|
|
export interface IRecentUser extends IUser {
|
|
|
recentDate: number;
|
|
recentDate: number;
|