| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspMeetRoom
- *
- * @author lhc
- * @date 2019-5-30
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspMeetRoom extends BaseBean implements Serializable {
- // 人员姓名
- @ApiModelProperty(value = "人员姓名", name = "persName")
- private String persName;
- // 机名
- @ApiModelProperty(value = "机名", name = "orgNm")
- private String orgNm;
- private String id;
- // 会议号
- @ApiModelProperty(value = "会议号", name = "meetingNumber")
- private String meetingNumber;
- // 会议室名称
- @ApiModelProperty(value = "会议室名称", name = "meetingName")
- private String meetingName;
- // 会议开始时间
- @ApiModelProperty(value = "会议开始时间", name = "startTime")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date startTime;
- // 会议结束时间
- @ApiModelProperty(value = "会议结束时间", name = "endTime")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date endTime;
- // 最大参加人数
- @ApiModelProperty(value = "最大参加人数", name = "maxParticipant")
- private Long maxParticipant;
- // 是否需要密码 0 1
- @ApiModelProperty(value = "是否需要密码 0 1", name = "requirePassword")
- private String requirePassword;
- // 指定密码
- @ApiModelProperty(value = "指定密码", name = "inPassword")
- private String inPassword;
- // 主持会议密码
- @ApiModelProperty(value = "主持会议密码", name = "controlPassword")
- private String controlPassword;
- // 0: 智能静音(默认第5个人以后自动静音)1: 全部静音 2: 不静音
- @ApiModelProperty(value = "0: 智能静音(默认第5个人以后自动静音)1: 全部静音 2: 不静音", name = "autoMute")
- private String autoMute;
- // 自动录制 0 1
- @ApiModelProperty(value = "自动录制 0 1 ", name = "autoRecord")
- private String autoRecord;
- // 智能静音人数,从低几个人开始,启动智能静音
- @ApiModelProperty(value = "智能静音人数,从低几个人开始,启动智能静音", name = "smartMuteperson")
- private Long smartMuteperson;
- // 分享链接
- @ApiModelProperty(value = "分享链接", name = "shareUrl")
- private String shareUrl;
- // 分配单位ID
- @ApiModelProperty(value = "分配单位ID", name = "usOrgId")
- private String usOrgId;
- // 参会人员id
- @ApiModelProperty(value = "参会人员id", name = "persId")
- private String persId;
- // 创建人单位id
- @ApiModelProperty(value = "创建人单位id", name = "orgId")
- private String orgId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date uptm;
- // 数据是否有效 1 0
- @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
- private String flagValid;
- // 分配使用机构的名称
- @ApiModelProperty(value = "分配使用机构的名称 ", name = "usOrgNm")
- private String usOrgNm;
- public String getUsOrgNm() {
- return usOrgNm;
- }
- public void setUsOrgNm(String usOrgNm) {
- this.usOrgNm = usOrgNm;
- }
- public BisInspMeetRoom() {
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public String getOrgNm() {
- return orgNm;
- }
- public void setOrgNm(String orgNm) {
- this.orgNm = orgNm;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMeetingNumber() {
- return meetingNumber;
- }
- public void setMeetingNumber(String meetingNumber) {
- this.meetingNumber = meetingNumber;
- }
- public String getMeetingName() {
- return meetingName;
- }
- public void setMeetingName(String meetingName) {
- this.meetingName = meetingName;
- }
- public Date getStartTime() {
- return startTime;
- }
- public void setStartTime(Date startTime) {
- this.startTime = startTime;
- }
- public Date getEndTime() {
- return endTime;
- }
- public void setEndTime(Date endTime) {
- this.endTime = endTime;
- }
- public Long getMaxParticipant() {
- return maxParticipant;
- }
- public void setMaxParticipant(Long maxParticipant) {
- this.maxParticipant = maxParticipant;
- }
- public String getRequirePassword() {
- return requirePassword;
- }
- public void setRequirePassword(String requirePassword) {
- this.requirePassword = requirePassword;
- }
- public String getInPassword() {
- return inPassword;
- }
- public void setInPassword(String inPassword) {
- this.inPassword = inPassword;
- }
- public String getControlPassword() {
- return controlPassword;
- }
- public void setControlPassword(String controlPassword) {
- this.controlPassword = controlPassword;
- }
- public String getAutoMute() {
- return autoMute;
- }
- public void setAutoMute(String autoMute) {
- this.autoMute = autoMute;
- }
- public String getAutoRecord() {
- return autoRecord;
- }
- public void setAutoRecord(String autoRecord) {
- this.autoRecord = autoRecord;
- }
- public Long getSmartMuteperson() {
- return smartMuteperson;
- }
- public void setSmartMuteperson(Long smartMuteperson) {
- this.smartMuteperson = smartMuteperson;
- }
- public String getShareUrl() {
- return shareUrl;
- }
- public void setShareUrl(String shareUrl) {
- this.shareUrl = shareUrl;
- }
- public String getUsOrgId() {
- return usOrgId;
- }
- public void setUsOrgId(String usOrgId) {
- this.usOrgId = usOrgId;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getFlagValid() {
- return flagValid;
- }
- public void setFlagValid(String flagValid) {
- this.flagValid = flagValid;
- }
- }
|