RemoteMeetingVO.java
3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.skua.modules.remotemeeting.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* AR远程会议
*/
@Data
@ApiModel(value="remote_meeting数据传输对象", description="AR远程会议")
public class RemoteMeetingVO {
/**id*/
@ApiModelProperty(value = "id")
private java.lang.String id;
/**协作主题*/
@Excel(name = "协作主题", width = 15)
@ApiModelProperty(value = "协作主题")
private java.lang.String themeName;
/**发起人id*/
@Excel(name = "发起人id", width = 15)
@ApiModelProperty(value = "发起人id")
private java.lang.String initiator;
/**开始时间*/
@Excel(name = "开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "开始时间")
private java.util.Date startTime;
/**结束时间*/
@Excel(name = "结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "结束时间")
private java.util.Date endTime;
/**任务类型 字典(remote_meeting_type)*/
@Excel(name = "任务类型 字典(remote_meeting_type)", width = 15)
@ApiModelProperty(value = "任务类型 字典(remote_meeting_type)")
private java.lang.String type;
/**任务状态 字典(remote_meeting_state)*/
@Excel(name = "任务状态 字典(remote_meeting_state)", width = 15)
@ApiModelProperty(value = "任务状态 字典(remote_meeting_state)")
private java.lang.String state;
/**协作时长(分钟)*/
@Excel(name = "协作时长(分钟)", width = 15)
@ApiModelProperty(value = "协作时长(分钟)")
private java.lang.Integer durationTime;
/**协作人id(以,分割)*/
@Excel(name = "协作人id(以,分割)", width = 15)
@ApiModelProperty(value = "协作人id(以,分割)")
private java.lang.String userList;
/**房间号*/
@Excel(name = "房间号", width = 15)
@ApiModelProperty(value = "房间号")
private java.lang.String roomId;
/**创建人id*/
@Excel(name = "创建人id", width = 15)
@ApiModelProperty(value = "创建人id")
private java.lang.String createBy;
/**创建时间*/
@Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "创建时间")
private java.util.Date createTime;
/**修改人id*/
@Excel(name = "修改人id", width = 15)
@ApiModelProperty(value = "修改人id")
private java.lang.String updateBy;
/**修改时间*/
@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private java.util.Date updateTime;
/**所属部门*/
@Excel(name = "所属部门", width = 15)
@ApiModelProperty(value = "所属部门")
private java.lang.String createDept;
/**所属公司*/
@Excel(name = "所属公司", width = 15)
@ApiModelProperty(value = "所属公司")
private java.lang.String createCmpy;
/**删除标识,0:正常,1:删除*/
@Excel(name = "删除标识,0:正常,1:删除", width = 15)
@ApiModelProperty(value = "删除标识,0:正常,1:删除")
private java.lang.Integer delFlag;
}