Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/jarvis/domain/XbGroup.java
雷欧(林平凡) d3a5be7868 1
2025-08-14 10:08:08 +08:00

90 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.jarvis.domain;
import java.util.Date;
/**
* 线报群信息表 xb_group
*
* @author ruoyi
*/
public class XbGroup
{
/** 主键ID */
private Integer id;
/** 群名称 */
private String name;
/** 微信群ID */
private String wxid;
/** 启用状态0-禁用1-启用 */
private Integer isActive;
/** 创建时间 */
private Date createDate;
/** 更新时间 */
private Date updateDate;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getWxid() {
return wxid;
}
public void setWxid(String wxid) {
this.wxid = wxid;
}
public Integer getIsActive() {
return isActive;
}
public void setIsActive(Integer isActive) {
this.isActive = isActive;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
@Override
public String toString() {
return "XbGroup{" +
"id=" + id +
", name='" + name + '\'' +
", wxid='" + wxid + '\'' +
", isActive=" + isActive +
", createDate=" + createDate +
", updateDate=" + updateDate +
'}';
}
}