青羊经侦大队-数据平台
安瑾然
2022-07-13 68985c22a03d280a96e89f4d0e67f144259fab92
src/main/java/com/example/jz/modle/entity/Group.java
@@ -1,39 +1,45 @@
package com.example.jz.modle.entity;
import java.util.Date;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
/**
 * 群表
 * (Group)表实体类
(Group)实体类
 *
 * @author makejava
 * @since 2022-07-11 16:35:57
 * @since 2022-07-12 16:50:59
 */
@SuppressWarnings("serial")
public class Group extends Model<Group> {
    //群 id
    private Integer groupId;
    //群名称
@TableName("qyjz.group")
public class Group implements Serializable {
    private static final long serialVersionUID = 208063400600909704L;
    /**
     * 群名称
     */
    private String groupName;
    //群创建时间
    private Date createTime;
    //群修改时间
    /**
     * 群修改时间
     */
    private Date updateTime;
    //群公告id
    /**
     * 群公告id
     */
    private Integer groupAnnouncementId;
    /**
     * 群 id
     */
    private Integer id;
    /**
     * 创建人id
     */
    private Integer userId;
    /**
     * 群创建时间
     */
    private Date ctime;
    public Integer getGroupId() {
        return groupId;
    }
    public void setGroupId(Integer groupId) {
        this.groupId = groupId;
    }
    public String getGroupName() {
        return groupName;
@@ -41,14 +47,6 @@
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public Date getUpdateTime() {
@@ -67,13 +65,29 @@
        this.groupAnnouncementId = groupAnnouncementId;
    }
    /**
     * 获取主键值
     *
     * @return 主键值
     */
    @Override
    protected Serializable pkVal() {
        return this.groupId;
    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;
    }
}