From 405d0d6a560e9a4ce6dbf5457a677a010d0cfeb1 Mon Sep 17 00:00:00 2001 From: 安瑾然 <107107765@qq.com> Date: 星期二, 12 七月 2022 16:52:07 +0800 Subject: [PATCH] commit --- src/main/java/com/example/jz/modle/entity/GroupUser.java | 37 +++++++++++++++++++++++++++++-------- 1 files changed, 29 insertions(+), 8 deletions(-) diff --git a/src/main/java/com/example/jz/modle/entity/GroupUser.java b/src/main/java/com/example/jz/modle/entity/GroupUser.java index 8146e70..6ebc272 100644 --- a/src/main/java/com/example/jz/modle/entity/GroupUser.java +++ b/src/main/java/com/example/jz/modle/entity/GroupUser.java @@ -1,21 +1,32 @@ package com.example.jz.modle.entity; -import com.baomidou.mybatisplus.extension.activerecord.Model; +import java.io.Serializable; +import java.util.Date; /** - * 鐢ㄦ埛鍜岀兢涓棿琛�(GroupUser)琛ㄥ疄浣撶被 + * 鐢ㄦ埛鍜岀兢涓棿琛�(GroupUser)瀹炰綋绫� * * @author makejava - * @since 2022-07-11 16:35:57 + * @since 2022-07-12 16:50:59 */ -@SuppressWarnings("serial") -public class GroupUser extends Model<GroupUser> { - //鐢ㄦ埛id +public class GroupUser implements Serializable { + private static final long serialVersionUID = -27152838957515341L; + /** + * 鐢ㄦ埛id + */ private Integer userId; - //缇d + /** + * 缇d + */ private Integer groupId; - //鏄惁绂佽█(0涓哄惁1涓烘槸锛� + /** + * 鏄惁绂佽█(0涓哄惁1涓烘槸锛� + */ private Object banSpeech; + /** + * 鍒涘缓鏃堕棿 + */ + private Date ctime; public Integer getUserId() { @@ -41,4 +52,14 @@ public void setBanSpeech(Object banSpeech) { this.banSpeech = banSpeech; } + + public Date getCtime() { + return ctime; + } + + public void setCtime(Date ctime) { + this.ctime = ctime; + } + } + -- Gitblit v1.8.0