Commit 0757de97 by songyinghui

feature: 账户数据

parent 072d1b7f
......@@ -12,6 +12,7 @@ import java.util.Date;
public class CloudVideoInfoVo implements Serializable {
/**
* 视频库id
*/
......@@ -80,6 +81,39 @@ public class CloudVideoInfoVo implements Serializable {
*/
private Integer duration;
/**
* 视频比例
*/
private String spare;
/**
* 账户类型
* 0 超管
* 1 导购
* 2 区经
*/
private Integer userType;
/**
* 用户id
*/
private String userId;
/**
* 导购code
*/
private String userCode;
/**
* 用户昵称
*/
private String userName;
/**
* 视频所属分组链
*/
private String groupName;
public String getId() {
return id;
}
......@@ -183,4 +217,52 @@ public class CloudVideoInfoVo implements Serializable {
public void setDuration(Integer duration) {
this.duration = duration;
}
public String getSpare() {
return spare;
}
public void setSpare(String spare) {
this.spare = spare;
}
public Integer getUserType() {
return userType;
}
public void setUserType(Integer userType) {
this.userType = userType;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserCode() {
return userCode;
}
public void setUserCode(String userCode) {
this.userCode = userCode;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
}
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