bea5bbe0dc854faef67456c57821fd9851459b8b.svn-base 6.9 KB

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