ca88a8ffabaa660fd34babc5c396a9065de0a1f9.svn-base 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * entity:BisInspMeetRoom
  10. *
  11. * @author lhc
  12. * @date 2019-5-27
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspMeetRoomDto extends BaseBean implements Serializable {
  16. // 机名
  17. @ApiModelProperty(value = "机名", name = "orgNm")
  18. private String orgNm;
  19. private String id;
  20. // 会议号
  21. @ApiModelProperty(value = "会议号", name = "meetingNumber")
  22. private String meetingNumber;
  23. // 会议室名称
  24. @ApiModelProperty(value = "会议室名称", name = "meetingName")
  25. private String meetingName;
  26. // 会议开始时间
  27. @ApiModelProperty(value = "会议开始时间", name = "startTime")
  28. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  29. private Date startTime;
  30. // 会议结束时间
  31. @ApiModelProperty(value = "会议结束时间", name = "endTime")
  32. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  33. private Date endTime;
  34. // 最大参加人数
  35. @ApiModelProperty(value = "最大参加人数", name = "maxParticipant")
  36. private Long maxParticipant;
  37. // 是否需要密码 0 1
  38. @ApiModelProperty(value = "是否需要密码 0 1", name = "requirePassword")
  39. private String requirePassword;
  40. // 指定密码
  41. @ApiModelProperty(value = "指定密码", name = "inPassword")
  42. private String inPassword;
  43. // 主持会议密码
  44. @ApiModelProperty(value = "主持会议密码", name = "controlPassword")
  45. private String controlPassword;
  46. // 0: 智能静音(默认第5个人以后自动静音)1: 全部静音 2: 不静音
  47. @ApiModelProperty(value = "0: 智能静音(默认第5个人以后自动静音)1: 全部静音 2: 不静音", name = "autoMute")
  48. private String autoMute;
  49. // 自动录制
  50. @ApiModelProperty(value = "自动录制", name = "autoRecord")
  51. private String autoRecord;
  52. // 智能静音人数,从低几个人开始,启动智能静音
  53. @ApiModelProperty(value = "智能静音人数,从低几个人开始,启动智能静音", name = "smartMuteperson")
  54. private Long smartMuteperson;
  55. // 分享链接
  56. @ApiModelProperty(value = "分享链接", name = "shareUrl")
  57. private String shareUrl;
  58. // 分配单位ID
  59. @ApiModelProperty(value = "分配单位ID", name = "usOrgId")
  60. private String usOrgId;
  61. // 创建人员id
  62. @ApiModelProperty(value = "创建人员id", name = "persId")
  63. private String persId;
  64. // 创建人员姓名
  65. @ApiModelProperty(value = "创建人员姓名", name = "persName")
  66. private String persName;
  67. // 创建人单位id
  68. @ApiModelProperty(value = "创建人单位id", name = "orgId")
  69. private String orgId;
  70. // 创建时间
  71. @ApiModelProperty(value = "创建时间", name = "intm")
  72. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  73. private Date intm;
  74. // 最后修改时间
  75. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  76. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  77. private Date uptm;
  78. // 数据是否有效 1 0
  79. @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
  80. private String flagValid;
  81. // 分配使用机构的名称
  82. @ApiModelProperty(value = "分配使用机构的名称 ", name = "usOrgNm")
  83. private String usOrgNm;
  84. public String getUsOrgNm() {
  85. return usOrgNm;
  86. }
  87. public void setUsOrgNm(String usOrgNm) {
  88. this.usOrgNm = usOrgNm;
  89. }
  90. public BisInspMeetRoomDto() {
  91. }
  92. public String getId() {
  93. return id;
  94. }
  95. public void setId(String id) {
  96. this.id = id;
  97. }
  98. public String getMeetingNumber() {
  99. return meetingNumber;
  100. }
  101. public void setMeetingNumber(String meetingNumber) {
  102. this.meetingNumber = meetingNumber;
  103. }
  104. public String getMeetingName() {
  105. return meetingName;
  106. }
  107. public void setMeetingName(String meetingName) {
  108. this.meetingName = meetingName;
  109. }
  110. public Date getStartTime() {
  111. return startTime;
  112. }
  113. public void setStartTime(Date startTime) {
  114. this.startTime = startTime;
  115. }
  116. public Date getEndTime() {
  117. return endTime;
  118. }
  119. public void setEndTime(Date endTime) {
  120. this.endTime = endTime;
  121. }
  122. public Long getMaxParticipant() {
  123. return maxParticipant;
  124. }
  125. public void setMaxParticipant(Long maxParticipant) {
  126. this.maxParticipant = maxParticipant;
  127. }
  128. public String getRequirePassword() {
  129. return requirePassword;
  130. }
  131. public void setRequirePassword(String requirePassword) {
  132. this.requirePassword = requirePassword;
  133. }
  134. public String getInPassword() {
  135. return inPassword;
  136. }
  137. public void setInPassword(String inPassword) {
  138. this.inPassword = inPassword;
  139. }
  140. public String getControlPassword() {
  141. return controlPassword;
  142. }
  143. public void setControlPassword(String controlPassword) {
  144. this.controlPassword = controlPassword;
  145. }
  146. public String getAutoMute() {
  147. return autoMute;
  148. }
  149. public void setAutoMute(String autoMute) {
  150. this.autoMute = autoMute;
  151. }
  152. public String getAutoRecord() {
  153. return autoRecord;
  154. }
  155. public void setAutoRecord(String autoRecord) {
  156. this.autoRecord = autoRecord;
  157. }
  158. public Long getSmartMuteperson() {
  159. return smartMuteperson;
  160. }
  161. public void setSmartMuteperson(Long smartMuteperson) {
  162. this.smartMuteperson = smartMuteperson;
  163. }
  164. public String getShareUrl() {
  165. return shareUrl;
  166. }
  167. public void setShareUrl(String shareUrl) {
  168. this.shareUrl = shareUrl;
  169. }
  170. public String getUsOrgId() {
  171. return usOrgId;
  172. }
  173. public void setUsOrgId(String usOrgId) {
  174. this.usOrgId = usOrgId;
  175. }
  176. public String getPersId() {
  177. return persId;
  178. }
  179. public void setPersId(String persId) {
  180. this.persId = persId;
  181. }
  182. @Override
  183. public String getOrgId() {
  184. return orgId;
  185. }
  186. @Override
  187. public void setOrgId(String orgId) {
  188. this.orgId = orgId;
  189. }
  190. public Date getIntm() {
  191. return intm;
  192. }
  193. public void setIntm(Date intm) {
  194. this.intm = intm;
  195. }
  196. public Date getUptm() {
  197. return uptm;
  198. }
  199. public void setUptm(Date uptm) {
  200. this.uptm = uptm;
  201. }
  202. public String getFlagValid() {
  203. return flagValid;
  204. }
  205. public void setFlagValid(String flagValid) {
  206. this.flagValid = flagValid;
  207. }
  208. public String getPersName() {
  209. return persName;
  210. }
  211. public void setPersName(String persName) {
  212. this.persName = persName;
  213. }
  214. public String getOrgNm() {
  215. return orgNm;
  216. }
  217. public void setOrgNm(String orgNm) {
  218. this.orgNm = orgNm;
  219. }
  220. }