0819afcbdbf078b043c226e516771d6d273d2f5b.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import io.swagger.annotations.ApiModel;
  6. import java.io.Serializable;
  7. /**
  8. * BisMeetingRoomParam
  9. *
  10. * @author zhengdafei
  11. * @date 2019-3-26
  12. */
  13. public class BisMeetingRoomParam extends PageParam implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. private String guid;
  16. // 会议名称
  17. @ApiParam(value = "会议名称(长度:256,可为空:Y)")
  18. @ApiModelProperty(value = "会议名称(长度:256,可为空:Y)")
  19. private String mrName;
  20. // 会议号
  21. @ApiParam(value = "会议号(长度:100,可为空:N)", required = true)
  22. @ApiModelProperty(value = "会议号(长度:100,可为空:N)")
  23. private String mrNumber;
  24. // 会议密码
  25. @ApiParam(value = "会议密码(长度:100,可为空:Y)", required = true)
  26. @ApiModelProperty(value = "会议密码(长度:100,可为空:Y)")
  27. private String mrPwd;
  28. // 机构id
  29. @ApiParam(value = "机构id(长度:32,可为空:Y)")
  30. @ApiModelProperty(value = "机构id(长度:32,可为空:Y)")
  31. private String orgId;
  32. // 创建时间
  33. @ApiParam(value = "创建时间(长度:7,可为空:Y)")
  34. @ApiModelProperty(value = "创建时间(长度:7,可为空:Y)")
  35. private String mrCtm;
  36. // 备注
  37. @ApiParam(value = "备注(长度:512,可为空:Y)")
  38. @ApiModelProperty(value = "备注(长度:512,可为空:Y)")
  39. private String mrNote;
  40. public BisMeetingRoomParam() {
  41. }
  42. public String getGuid() {
  43. return guid;
  44. }
  45. public void setGuid(String guid) {
  46. this.guid = guid;
  47. }
  48. public String getMrName() {
  49. return mrName;
  50. }
  51. public void setMrName(String mrName) {
  52. this.mrName = mrName;
  53. }
  54. public String getMrNumber() {
  55. return mrNumber;
  56. }
  57. public void setMrNumber(String mrNumber) {
  58. this.mrNumber = mrNumber;
  59. }
  60. public String getMrPwd() {
  61. return mrPwd;
  62. }
  63. public void setMrPwd(String mrPwd) {
  64. this.mrPwd = mrPwd;
  65. }
  66. @Override
  67. public String getOrgId() {
  68. return orgId;
  69. }
  70. @Override
  71. public void setOrgId(String orgId) {
  72. this.orgId = orgId;
  73. }
  74. public String getMrCtm() {
  75. return mrCtm;
  76. }
  77. public void setMrCtm(String mrCtm) {
  78. this.mrCtm = mrCtm;
  79. }
  80. public String getMrNote() {
  81. return mrNote;
  82. }
  83. public void setMrNote(String mrNote) {
  84. this.mrNote = mrNote;
  85. }
  86. }