|
|
@@ -23,56 +23,77 @@ import java.util.List;
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
@Accessors(chain = true)
|
|
|
|
|
|
-@ApiModel(value = "CoreAnnouncementNotification对象" , description = "公告通知")
|
|
|
-public class CoreAnnouncementNotificationPageVo
|
|
|
- {
|
|
|
-private static final long serialVersionUID=1L;
|
|
|
+@ApiModel(value = "CoreAnnouncementNotification对象", description = "公告通知")
|
|
|
+public class CoreAnnouncementNotificationPageVo {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** */
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long id;
|
|
|
|
|
|
- /** 机构 */
|
|
|
+ /**
|
|
|
+ * 机构
|
|
|
+ */
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long orgId;
|
|
|
|
|
|
- /** 创建机构 */
|
|
|
- @ApiModelProperty(value = "创建机构")
|
|
|
+ /**
|
|
|
+ * 创建机构
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "创建机构")
|
|
|
private String orgName;
|
|
|
|
|
|
- /** 机构 */
|
|
|
+ /**
|
|
|
+ * 机构
|
|
|
+ */
|
|
|
private String orgPath;
|
|
|
|
|
|
- /** 标题 */
|
|
|
+ /**
|
|
|
+ * 标题
|
|
|
+ */
|
|
|
private String title;
|
|
|
|
|
|
- /** 内容 */
|
|
|
- @ApiModelProperty(value = "内容")
|
|
|
+ /**
|
|
|
+ * 内容
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "内容")
|
|
|
private String content;
|
|
|
|
|
|
- /** 消息类型 */
|
|
|
- @ApiModelProperty(value = "消息类型")
|
|
|
+ /**
|
|
|
+ * 消息类型
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "消息类型")
|
|
|
private String messagType;
|
|
|
- /**
|
|
|
- * 机构类型
|
|
|
- */
|
|
|
- private String tagOrgType;
|
|
|
- /** 目标机构 */
|
|
|
+ /**
|
|
|
+ * 机构类型
|
|
|
+ */
|
|
|
+ private String tagOrgType;
|
|
|
+ /**
|
|
|
+ * 目标机构
|
|
|
+ */
|
|
|
private List<Long> tagOrgIds;
|
|
|
|
|
|
- /** 目标角色 */
|
|
|
+ /**
|
|
|
+ * 目标角色
|
|
|
+ */
|
|
|
private List<Long> tagRoleIds;
|
|
|
|
|
|
- /** 发布时间 */
|
|
|
- @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 = "状态")
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "状态")
|
|
|
private String messagStatus;
|
|
|
|
|
|
- @ApiModelProperty(value = "附件")
|
|
|
- private List<String> fileList;
|
|
|
-
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
+ private List<String> fileList;
|
|
|
+ private String createBy;
|
|
|
+}
|