Commit 63738479 by 王祖波

返回id

parent ef202e0c
package com.gic.haoban.manage.web.vo.content.account; package com.gic.haoban.manage.web.vo.content.account;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import java.io.Serializable; import java.io.Serializable;
/** /**
...@@ -12,6 +15,8 @@ public class ContentAccountInfoVo implements Serializable { ...@@ -12,6 +15,8 @@ public class ContentAccountInfoVo implements Serializable {
private static final long serialVersionUID = -3355601918337775024L; private static final long serialVersionUID = -3355601918337775024L;
@JsonSerialize(using = ToStringSerializer.class)
private Long id;
/** /**
* 渠道类型 1 视频号 2 小红书 * 渠道类型 1 视频号 2 小红书
*/ */
...@@ -38,6 +43,14 @@ public class ContentAccountInfoVo implements Serializable { ...@@ -38,6 +43,14 @@ public class ContentAccountInfoVo implements Serializable {
*/ */
private Integer status; private Integer status;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Integer getBizType() { public Integer getBizType() {
return bizType; return bizType;
} }
......
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