|  |  |  | 
|---|
|  |  |  | import com.doumee.dao.business.model.ProjectRel; | 
|---|
|  |  |  | import com.doumee.dao.business.model.RoomTime; | 
|---|
|  |  |  | import com.doumee.dao.business.model.UserRel; | 
|---|
|  |  |  | import com.doumee.dao.system.model.Multifile; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "使用须知") | 
|---|
|  |  |  | private String tips; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "会议室文件类型:0=图片(多图),1=视频,2=无") | 
|---|
|  |  |  | private Integer fileType; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "参会人员") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private List<UserRel> sysList; | 
|---|
|  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "服务项目") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private List<ProjectRel> projectList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "附件文件") | 
|---|
|  |  |  | private List<Multifile> multifileList; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|