|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.web.response; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.dao.business.model.BookingTime; | 
|---|
|  |  |  | import com.doumee.dao.business.model.Multifile; | 
|---|
|  |  |  | import com.doumee.dao.business.model.Projects; | 
|---|
|  |  |  | 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 lombok.Data; | 
|---|
|  |  |  | 
|---|
|  |  |  | private String meetingTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "参会人员") | 
|---|
|  |  |  | private List<UserResponse> userResponseList; | 
|---|
|  |  |  | //    private List<UserResponse> userResponseList; | 
|---|
|  |  |  | private List<SystemUser> userResponseList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议内容") | 
|---|
|  |  |  | private String meetingContent; | 
|---|
|  |  |  | 
|---|
|  |  |  | private String bookingUserName; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议预约人信息") | 
|---|
|  |  |  | private UserResponse bookingUser; | 
|---|
|  |  |  | private SystemUser bookingUser; | 
|---|
|  |  |  | //    @ApiModelProperty(value = "会议预约人信息") | 
|---|
|  |  |  | //    private UserResponse bookingUser; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议状态: 1=未开始;2=进行中;3=已结束") | 
|---|
|  |  |  | private Integer meetingStatus; | 
|---|
|  |  |  | 
|---|
|  |  |  | private String remark; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议室管理人") | 
|---|
|  |  |  | private UserResponse roomUser; | 
|---|
|  |  |  | private SystemUser roomUser; | 
|---|
|  |  |  | //    @ApiModelProperty(value = "会议室管理人") | 
|---|
|  |  |  | //    private UserResponse roomUser; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|