|
@@ -0,0 +1,13 @@
|
|
|
|
|
+package com.finikes.oc.base.entity;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 通知
|
|
|
|
|
+ */
|
|
|
|
|
+public class Notice {
|
|
|
|
|
+ private int id;
|
|
|
|
|
+ private int type; // 1:公告; 2:消息
|
|
|
|
|
+ private String title; // 主标题
|
|
|
|
|
+ private String secondTitle; // 副标题
|
|
|
|
|
+ private String content; // 内容
|
|
|
|
|
+ private long publishTime; // 发布时间
|
|
|
|
|
+}
|