package com.yeshi.fanli.dto.aitaoker;
|
|
import com.google.gson.annotations.SerializedName;
|
|
public class RobotInfoDTO {
|
@SerializedName("id")
|
private Integer id;
|
|
@SerializedName("robot_type")
|
private Integer robotType;
|
|
@SerializedName("uid")
|
private String uid;
|
|
@SerializedName("wechatrobot")
|
private String wechatrobot;
|
|
@SerializedName("wx_id")
|
private String wxId;
|
|
@SerializedName("amount_used")
|
private String amountUsed;
|
|
@SerializedName("group_num")
|
private Integer groupNum; // 最大群数
|
|
@SerializedName("passwd")
|
private String passwd;
|
|
@SerializedName("nickname")
|
private String nickname;
|
|
@SerializedName("c_uid")
|
private String cUid;
|
|
@SerializedName("login_status")
|
private String loginStatus;
|
|
@SerializedName("end_time")
|
private String endTime; // 到期时间 1590139325
|
|
@SerializedName("remark")
|
private String remark;
|
|
@SerializedName("wc_id")
|
private String wcId; // 微信实例id
|
|
@SerializedName("agent_uid")
|
private String agentUid; // 代理id
|
|
@SerializedName("is_enabled")
|
private String isEnabled; // 0 正常 1暂停
|
|
@SerializedName("is_new")
|
private String isNew; // 0 正常 1暂停
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public String getWechatrobot() {
|
return wechatrobot;
|
}
|
|
public void setWechatrobot(String wechatrobot) {
|
this.wechatrobot = wechatrobot;
|
}
|
|
public String getAmountUsed() {
|
return amountUsed;
|
}
|
|
public void setAmountUsed(String amountUsed) {
|
this.amountUsed = amountUsed;
|
}
|
|
public Integer getGroupNum() {
|
return groupNum;
|
}
|
|
public void setGroupNum(Integer groupNum) {
|
this.groupNum = groupNum;
|
}
|
|
public String getPasswd() {
|
return passwd;
|
}
|
|
public void setPasswd(String passwd) {
|
this.passwd = passwd;
|
}
|
|
public String getNickname() {
|
return nickname;
|
}
|
|
public void setNickname(String nickname) {
|
this.nickname = nickname;
|
}
|
|
public String getcUid() {
|
return cUid;
|
}
|
|
public void setcUid(String cUid) {
|
this.cUid = cUid;
|
}
|
|
public String getLoginStatus() {
|
return loginStatus;
|
}
|
|
public void setLoginStatus(String loginStatus) {
|
this.loginStatus = loginStatus;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getWcId() {
|
return wcId;
|
}
|
|
public void setWcId(String wcId) {
|
this.wcId = wcId;
|
}
|
|
public String getAgentUid() {
|
return agentUid;
|
}
|
|
public void setAgentUid(String agentUid) {
|
this.agentUid = agentUid;
|
}
|
|
public String getIsEnabled() {
|
return isEnabled;
|
}
|
|
public void setIsEnabled(String isEnabled) {
|
this.isEnabled = isEnabled;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getRobotType() {
|
return robotType;
|
}
|
|
public void setRobotType(Integer robotType) {
|
this.robotType = robotType;
|
}
|
|
public String getWxId() {
|
return wxId;
|
}
|
|
public void setWxId(String wxId) {
|
this.wxId = wxId;
|
}
|
|
public String getIsNew() {
|
return isNew;
|
}
|
|
public void setIsNew(String isNew) {
|
this.isNew = isNew;
|
}
|
|
}
|