Commit 75b607bb by 王祖波

增加账号参数

parent fb18512c
......@@ -12,7 +12,10 @@ public class ContentAccountInfoVo implements Serializable {
private static final long serialVersionUID = -3355601918337775024L;
/**
* 渠道类型 1 视频号 2 小红书
*/
private Integer bizType;
/**
* 账号名称
*/
......@@ -31,9 +34,18 @@ public class ContentAccountInfoVo implements Serializable {
* 账号授权状态
* 1 授权中
* 2 已过期
* 3 已解绑
*/
private Integer status;
public Integer getBizType() {
return bizType;
}
public void setBizType(Integer bizType) {
this.bizType = bizType;
}
public String getAccountName() {
return accountName;
}
......
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