Commit 9e5fc20a by songyinghui

feature: 账号列表

parent bab742e3
......@@ -27,6 +27,13 @@ public class ContentAccountInfoVo implements Serializable {
*/
private String accountImageUrl;
/**
* 账号授权状态
* 1 授权中
* 2 已过期
*/
private Integer status;
public String getAccountName() {
return accountName;
}
......@@ -50,4 +57,12 @@ public class ContentAccountInfoVo implements Serializable {
public void setAccountImageUrl(String accountImageUrl) {
this.accountImageUrl = accountImageUrl;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment