d36fb00a100daead9909a4aab016a669828319d1.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. * BisInspMeetMntsCustomsParam
  9. *
  10. * @author lhc
  11. * @date 2019-5-27
  12. */
  13. public class BisInspMeetMntsCustomsParam extends PageParam implements Serializable {
  14. private String id;
  15. // 参会人员id
  16. @ApiParam(name = "参会人员id")
  17. @ApiModelProperty(value = "参会人员id", name = "persId")
  18. private String persId;
  19. // 小鱼账号
  20. @ApiParam(name = "小鱼账号")
  21. @ApiModelProperty(value = "小鱼账号", name = "callnumber")
  22. private String callnumber;
  23. // 会议/讨论组id
  24. @ApiParam(name = "会议/讨论组id")
  25. @ApiModelProperty(value = "会议/讨论组id", name = "meetRecodeId")
  26. private String meetRecodeId;
  27. // 加入时间
  28. @ApiParam(name = "加入时间")
  29. @ApiModelProperty(value = "加入时间", name = "jntm")
  30. private Date jntm;
  31. // 创建时间
  32. @ApiParam(name = "创建时间")
  33. @ApiModelProperty(value = "创建时间", name = "intm")
  34. private Date intm;
  35. // 最后修改时间
  36. @ApiParam(name = "最后修改时间")
  37. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  38. private Date uptm;
  39. // 数据是否有效 1 0
  40. @ApiParam(name = "数据是否有效 1 0 ")
  41. @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
  42. private String flagValid;
  43. public BisInspMeetMntsCustomsParam() {
  44. }
  45. public String getId() {
  46. return id;
  47. }
  48. public void setId(String id) {
  49. this.id = id;
  50. }
  51. public String getPersId() {
  52. return persId;
  53. }
  54. public void setPersId(String persId) {
  55. this.persId = persId;
  56. }
  57. public String getMeetRecodeId() {
  58. return meetRecodeId;
  59. }
  60. public void setMeetRecodeId(String meetRecodeId) {
  61. this.meetRecodeId = meetRecodeId;
  62. }
  63. public Date getJntm() {
  64. return jntm;
  65. }
  66. public void setJntm(Date jntm) {
  67. this.jntm = jntm;
  68. }
  69. public Date getIntm() {
  70. return intm;
  71. }
  72. public void setIntm(Date intm) {
  73. this.intm = intm;
  74. }
  75. public Date getUptm() {
  76. return uptm;
  77. }
  78. public void setUptm(Date uptm) {
  79. this.uptm = uptm;
  80. }
  81. public String getFlagValid() {
  82. return flagValid;
  83. }
  84. public void setFlagValid(String flagValid) {
  85. this.flagValid = flagValid;
  86. }
  87. public String getCallnumber() {
  88. return callnumber;
  89. }
  90. public void setCallnumber(String callnumber) {
  91. this.callnumber = callnumber;
  92. }
  93. }