package com.example.jz.modle.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 群表
|
(Group)实体类
|
*
|
* @author makejava
|
* @since 2022-07-12 16:50:59
|
*/
|
public class Group implements Serializable {
|
private static final long serialVersionUID = 208063400600909704L;
|
/**
|
* 群名称
|
*/
|
private String groupName;
|
/**
|
* 群修改时间
|
*/
|
private Date updateTime;
|
/**
|
* 群公告id
|
*/
|
private Integer groupAnnouncementId;
|
/**
|
* 群 id
|
*/
|
private Integer id;
|
/**
|
* 创建人id
|
*/
|
private Integer userId;
|
/**
|
* 群创建时间
|
*/
|
private Date ctime;
|
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Integer getGroupAnnouncementId() {
|
return groupAnnouncementId;
|
}
|
|
public void setGroupAnnouncementId(Integer groupAnnouncementId) {
|
this.groupAnnouncementId = groupAnnouncementId;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
public Date getCtime() {
|
return ctime;
|
}
|
|
public void setCtime(Date ctime) {
|
this.ctime = ctime;
|
}
|
|
}
|