|
|
@@ -23,33 +23,44 @@ import java.util.List;
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
@Accessors(chain = true)
|
|
|
|
|
|
-@ApiModel(value = "CoreAnnouncementNotification对象" , description = "公告通知")
|
|
|
-public class MessageAppPageVo
|
|
|
- {
|
|
|
-private static final long serialVersionUID=1L;
|
|
|
+@ApiModel(value = "CoreAnnouncementNotification对象", description = "公告通知")
|
|
|
+public class MessageAppPageVo {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** */
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long id;
|
|
|
|
|
|
- /** 标题 */
|
|
|
+ /**
|
|
|
+ * 标题
|
|
|
+ */
|
|
|
private String title;
|
|
|
|
|
|
- /** 内容 */
|
|
|
- @ApiModelProperty(value = "内容")
|
|
|
+ /**
|
|
|
+ * 内容
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "内容")
|
|
|
private String content;
|
|
|
- /** 发布时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
- @ApiModelProperty(value = "发布时间")
|
|
|
+ /**
|
|
|
+ * 发布时间
|
|
|
+ */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @ApiModelProperty(value = "发布时间")
|
|
|
private Date publishTime;
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
+ private List<FileObject> fileList;
|
|
|
|
|
|
- @ApiModelProperty(value = "附件")
|
|
|
- private List<FileObject> fileList;
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
+ private String strFileList;
|
|
|
|
|
|
- @ApiModelProperty(value = "附件")
|
|
|
- private String strFileList;
|
|
|
+ private Integer isRead;
|
|
|
|
|
|
- private Integer isRead;
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * 发布机构
|
|
|
+ */
|
|
|
+ private String publishOrg;
|
|
|
+}
|