EditInfoModel.ets
599 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export class EditListInfo{
//标题
title:string
//副标题
subTitle:string
constructor(title:string , subTitle:string) {
this.title = title;
this.subTitle = subTitle
}
}
export interface EditInfoModel{
//头像
headPhotoUrl:string
//简介
introduction:string
//城市
city:string
//地区
county:string
//生日
birthday:string
//性别
sex:string
// 推荐开关 0:关 1:开(默认)
airec:number
}
export interface editModel{
userName:string
userNameStatus:string
phone:string
headPhotoStatus:string
userExtend:EditInfoModel
}