parent
b1a0486a8f
commit
b8a1cfc555
@ -0,0 +1,94 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue