|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.web.response; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.dao.system.model.Multifile; | 
|---|
|  |  |  | import com.doumee.dao.system.model.SystemUser; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  | import java.util.Date; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * Created by IntelliJ IDEA. | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @ApiModel("会议列表返回类") | 
|---|
|  |  |  | public class MeetingListResponse{ | 
|---|
|  |  |  | public class   MeetingListResponse{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "主键") | 
|---|
|  |  |  | private Integer id; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议开始时间",hidden = true) | 
|---|
|  |  |  | private Date startTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "状态 0已预约 1已撤销 ",hidden = true) | 
|---|
|  |  |  | @ApiModelProperty(value = "状态 0已预约 1已撤销 2已结束",hidden = true) | 
|---|
|  |  |  | private Integer status; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议预约人") | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议室图片") | 
|---|
|  |  |  | private String imgUrl; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "文件类型") | 
|---|
|  |  |  | private Integer fileType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议室附件信息") | 
|---|
|  |  |  | private List<Multifile> multifileList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "前缀") | 
|---|
|  |  |  | private String prefixUrl; | 
|---|
|  |  |  |  | 
|---|