|
@@ -0,0 +1,56 @@
|
|
|
+/**
|
|
|
+ * Copyright (c) 2018 业主系统 All rights reserved.
|
|
|
+ * <p>
|
|
|
+ * https://www.yezhu.io
|
|
|
+ * <p>
|
|
|
+ * 版权所有,侵权必究!
|
|
|
+ */
|
|
|
+
|
|
|
+package com.kioor.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 留言
|
|
|
+ *
|
|
|
+ * @author Mark sunlightcs@gmail.com
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("tb_messages")
|
|
|
+public class MessageEntity implements Serializable {
|
|
|
+ /**
|
|
|
+ * 用户ID
|
|
|
+ */
|
|
|
+ @TableId
|
|
|
+ private Long id;
|
|
|
+ /**
|
|
|
+ * 留言板
|
|
|
+ */
|
|
|
+ private Long messageBoardId;
|
|
|
+ /**
|
|
|
+ * 留言内容
|
|
|
+ */
|
|
|
+ private String content;
|
|
|
+ /**
|
|
|
+ * 留言人
|
|
|
+ */
|
|
|
+ private Long editUser;
|
|
|
+ /**
|
|
|
+ * 留言时间
|
|
|
+ */
|
|
|
+ private Date editTime;
|
|
|
+ /**
|
|
|
+ * 是否显示姓名
|
|
|
+ */
|
|
|
+ private int showNameFlag;
|
|
|
+ /**
|
|
|
+ * 是否显示房号
|
|
|
+ */
|
|
|
+ private int showRoomFlag;
|
|
|
+
|
|
|
+}
|