2700ad601c6e0372b7ed2c053af6791a6b574fab.svn-base 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspMeetRecodeParam
  9. *
  10. * @author lhc
  11. * @date 2019-5-27
  12. */
  13. public class BisInspMeetRecodeParam extends PageParam implements Serializable {
  14. public BisInspMeetRecodeParam() {
  15. }
  16. @ApiModelProperty(value = "人员ID", name = "persId")
  17. private String persId;
  18. @ApiModelProperty(value = "返回会议结束时间大于此参考时间的所有会议", name = "persId")
  19. private String tm;
  20. // 会议标题
  21. @ApiModelProperty(value = "会议标题", name = "title")
  22. private String title;
  23. // 1 随机自动生成,2 指定云会议号(使用时,必须填写CONFERENENUMBER)
  24. @ApiModelProperty(value = "1 随机自动生成,2 指定云会议号(使用时,必须填写CONFERENENUMBER)", name = "meetingroomtype")
  25. private String meetingroomtype;
  26. // 虚拟云会议号
  27. @ApiModelProperty(value = "虚拟云会议号", name = "conferencenumber")
  28. private String conferencenumber;
  29. public String getTitle() {
  30. return title;
  31. }
  32. public void setTitle(String title) {
  33. this.title = title;
  34. }
  35. public String getMeetingroomtype() {
  36. return meetingroomtype;
  37. }
  38. public void setMeetingroomtype(String meetingroomtype) {
  39. this.meetingroomtype = meetingroomtype;
  40. }
  41. public String getConferencenumber() {
  42. return conferencenumber;
  43. }
  44. public void setConferencenumber(String conferencenumber) {
  45. this.conferencenumber = conferencenumber;
  46. }
  47. public String getPersId() {
  48. return persId;
  49. }
  50. public void setPersId(String persId) {
  51. this.persId = persId;
  52. }
  53. public String getTm() {
  54. return tm;
  55. }
  56. public void setTm(String tm) {
  57. this.tm = tm;
  58. }
  59. }