d858ca4992e7ee5da7b4903b8a0740064ad83b76.svn-base 2.4 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 java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspMeetMntsSmsParam
  9. *
  10. * @author lhc
  11. * @date 2019-5-27
  12. */
  13. public class BisInspMeetMntsSmsParam extends PageParam implements Serializable {
  14. // id
  15. @ApiParam(name = "id")
  16. @ApiModelProperty(value = "id", name = "id")
  17. private String id;
  18. // 会议/讨论组id
  19. @ApiParam(name = "会议/讨论组id")
  20. @ApiModelProperty(value = "会议/讨论组id", name = "meetRecodeId")
  21. private String meetRecodeId;
  22. // 人员id
  23. @ApiParam(name = "人员id")
  24. @ApiModelProperty(value = "人员id", name = "persId")
  25. private String persId;
  26. // 短信内容
  27. @ApiParam(name = "短信内容")
  28. @ApiModelProperty(value = "短信内容", name = "sms")
  29. private String sms;
  30. // 创建时间
  31. @ApiParam(name = "创建时间")
  32. @ApiModelProperty(value = "创建时间", name = "intm")
  33. private Date intm;
  34. // 最后修改时间
  35. @ApiParam(name = "最后修改时间")
  36. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  37. private Date uptm;
  38. // 数据是否有效 1 0
  39. @ApiParam(name = "数据是否有效 1 0 ")
  40. @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
  41. private String flagValid;
  42. public BisInspMeetMntsSmsParam() {
  43. }
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getMeetRecodeId() {
  51. return meetRecodeId;
  52. }
  53. public void setMeetRecodeId(String meetRecodeId) {
  54. this.meetRecodeId = meetRecodeId;
  55. }
  56. public String getPersId() {
  57. return persId;
  58. }
  59. public void setPersId(String persId) {
  60. this.persId = persId;
  61. }
  62. public String getSms() {
  63. return sms;
  64. }
  65. public void setSms(String sms) {
  66. this.sms = sms;
  67. }
  68. public Date getIntm() {
  69. return intm;
  70. }
  71. public void setIntm(Date intm) {
  72. this.intm = intm;
  73. }
  74. public Date getUptm() {
  75. return uptm;
  76. }
  77. public void setUptm(Date uptm) {
  78. this.uptm = uptm;
  79. }
  80. public String getFlagValid() {
  81. return flagValid;
  82. }
  83. public void setFlagValid(String flagValid) {
  84. this.flagValid = flagValid;
  85. }
  86. }