1
This commit is contained in:
@@ -21,12 +21,26 @@ public class XbGroup
|
||||
/** 启用状态:0-禁用,1-启用 */
|
||||
private Integer isActive;
|
||||
|
||||
/** 类型,1管理群,2评论群,3线报来源群,4线报推送群 */
|
||||
private Integer groupType;
|
||||
|
||||
public String getGroupTypeName() {
|
||||
return groupTypeName;
|
||||
}
|
||||
|
||||
public void setGroupTypeName(String groupTypeName) {
|
||||
this.groupTypeName = groupTypeName;
|
||||
}
|
||||
|
||||
private String groupTypeName;
|
||||
|
||||
/** 创建时间 */
|
||||
private Date createDate;
|
||||
|
||||
/** 更新时间 */
|
||||
private Date updateDate;
|
||||
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -59,6 +73,14 @@ public class XbGroup
|
||||
this.isActive = isActive;
|
||||
}
|
||||
|
||||
public Integer getGroupType() {
|
||||
return groupType;
|
||||
}
|
||||
|
||||
public void setGroupType(Integer groupType) {
|
||||
this.groupType = groupType;
|
||||
}
|
||||
|
||||
public Date getCreateDate() {
|
||||
return createDate;
|
||||
}
|
||||
@@ -82,6 +104,7 @@ public class XbGroup
|
||||
", name='" + name + '\'' +
|
||||
", wxid='" + wxid + '\'' +
|
||||
", isActive=" + isActive +
|
||||
", groupType=" + groupType +
|
||||
", createDate=" + createDate +
|
||||
", updateDate=" + updateDate +
|
||||
'}';
|
||||
|
||||
Reference in New Issue
Block a user