You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.9 KiB
94 lines
1.9 KiB
package com.example.share2;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class ResponseData {
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getAppKey() {
|
|
return appKey;
|
|
}
|
|
|
|
public void setAppKey(String appKey) {
|
|
this.appKey = appKey;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setSex(String sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public String getImageCode() {
|
|
return imageCode;
|
|
}
|
|
|
|
public void setImageCode(String imageCode) {
|
|
this.imageCode = imageCode;
|
|
}
|
|
|
|
public String[] getImageUrlList() {
|
|
return imageUrlList;
|
|
}
|
|
|
|
public void setImageUrlList(String[] imageUrlList) {
|
|
this.imageUrlList = imageUrlList;
|
|
}
|
|
|
|
public String getIntroduce() {
|
|
return introduce;
|
|
}
|
|
|
|
public void setIntroduce(String introduce) {
|
|
this.introduce = introduce;
|
|
}
|
|
|
|
public String getAvatar() {
|
|
return avatar;
|
|
}
|
|
|
|
public void setAvatar(String avatar) {
|
|
this.avatar = avatar;
|
|
}
|
|
|
|
@Expose(serialize = false, deserialize = false)
|
|
private String id;
|
|
|
|
@SerializedName("imageCode")
|
|
private String imageCode;
|
|
|
|
@SerializedName("imageUrlList")
|
|
private String[] imageUrlList;
|
|
|
|
@SerializedName("introduce")
|
|
private String introduce;
|
|
|
|
@SerializedName("avatar")
|
|
private String avatar;
|
|
|
|
@SerializedName("appKey")
|
|
private String appKey;
|
|
@SerializedName("username")
|
|
private String username;
|
|
@SerializedName("sex")
|
|
private String sex;
|
|
|
|
} |