RemoteMeetingVO.java 3.6 KB
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;
}