f28738709de81dd8f9fa57992d3520246e7df43a.svn-base 7.0 KB

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