| package com.doumee.dao.web.response; | 
|   | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel("消息通知信息列表") | 
| public class NoticeCardResponse { | 
|   | 
|     @ApiModelProperty(value = "主键", example = "1") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     private Date createDate; | 
|   | 
|     @ApiModelProperty(value = "标题") | 
|     private String title; | 
|   | 
|     @ApiModelProperty(value = "内容") | 
|     private String content; | 
|   | 
|     @ApiModelProperty(value = "对象编码", example = "1") | 
|     private Integer objId; | 
|   | 
|     @ApiModelProperty(value = "对象类型 1=会议通知", example = "1") | 
|     private Integer objType; | 
|   | 
|     @ApiModelProperty(value = "消息类型 0系统消息 1会议通知", example = "1") | 
|     private Integer type; | 
|   | 
|     @ApiModelProperty(value = "状态 0未读 1已读", example = "1") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "会议信息") | 
|     private MeetingDetailResponse meetingDetailResponse; | 
|   | 
| } |