package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; import io.swagger.annotations.ApiModelProperty; /** * BisInspMeetRecodeParam * * @author lhc * @date 2019-5-27 */ public class BisInspMeetRecodeParam extends PageParam implements Serializable { public BisInspMeetRecodeParam() { } @ApiModelProperty(value = "人员ID", name = "persId") private String persId; @ApiModelProperty(value = "返回会议结束时间大于此参考时间的所有会议", name = "persId") private String tm; // 会议标题 @ApiModelProperty(value = "会议标题", name = "title") private String title; // 1 随机自动生成,2 指定云会议号(使用时,必须填写CONFERENENUMBER) @ApiModelProperty(value = "1 随机自动生成,2 指定云会议号(使用时,必须填写CONFERENENUMBER)", name = "meetingroomtype") private String meetingroomtype; // 虚拟云会议号 @ApiModelProperty(value = "虚拟云会议号", name = "conferencenumber") private String conferencenumber; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getMeetingroomtype() { return meetingroomtype; } public void setMeetingroomtype(String meetingroomtype) { this.meetingroomtype = meetingroomtype; } public String getConferencenumber() { return conferencenumber; } public void setConferencenumber(String conferencenumber) { this.conferencenumber = conferencenumber; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getTm() { return tm; } public void setTm(String tm) { this.tm = tm; } }