package com.example.jz.modle.entity;
|
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
import java.io.Serializable;
|
|
/**
|
* 群表
|
* (Group)表实体类
|
*
|
* @author makejava
|
* @since 2022-07-11 16:35:57
|
*/
|
@SuppressWarnings("serial")
|
public class Group extends Model<Group> {
|
//群 id
|
private Integer groupId;
|
//群名称
|
private String groupName;
|
//群创建时间
|
private Date createTime;
|
//群修改时间
|
private Date updateTime;
|
//群公告id
|
private Integer groupAnnouncementId;
|
|
|
public Integer getGroupId() {
|
return groupId;
|
}
|
|
public void setGroupId(Integer groupId) {
|
this.groupId = groupId;
|
}
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
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;
|
}
|
|
/**
|
* 获取主键值
|
*
|
* @return 主键值
|
*/
|
@Override
|
protected Serializable pkVal() {
|
return this.groupId;
|
}
|
}
|