Commit 79b4b63c by songyinghui

Merge branch 'feature-content5' into developer

parents 33fe8200 24b03558
......@@ -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