8f857eb38617696bf7a2255870fc4932173be159.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
  4. import cn.com.goldenwater.dcproj.model.BisInspMeetDiscussPers;
  5. import io.swagger.annotations.ApiParam;
  6. import java.util.Date;
  7. import java.io.Serializable;
  8. import java.util.List;
  9. import io.swagger.annotations.ApiModelProperty;
  10. /**
  11. * BisInspMeetDiscussPersParam
  12. *
  13. * @author lhc
  14. * @date 2019-5-30
  15. */
  16. public class BisInspMeetDiscussPersParam implements Serializable {
  17. //参会人员id
  18. @ApiModelProperty(value = "讨论组人员记录id", name = "id")
  19. private List<BisInspMeetDiscussPers> id;
  20. // 讨论组id
  21. @ApiParam(name = "讨论组id")
  22. @ApiModelProperty(value = "讨论组id", name = "disId")
  23. private String disId;
  24. // 方法
  25. @ApiParam(name = "方法")
  26. @ApiModelProperty(value = "方法 add / del ", name = "method")
  27. private String method;
  28. // 方法
  29. @ApiParam(name = "人员ID")
  30. @ApiModelProperty(value = "人员ID", name = "persId")
  31. private String persId;
  32. @ApiModelProperty(value = "人员姓名", name = "persName")
  33. private String persName;
  34. // 创建时间
  35. @ApiModelProperty(value = "创建时间", name = "intm")
  36. private Date intm;
  37. // 最后修改时间
  38. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  39. private Date uptm;
  40. // 数据是否有效 1 0
  41. @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
  42. private String flagValid;
  43. // 小鱼账号
  44. @ApiModelProperty(value = "小鱼账号", name = "callnumber")
  45. private String callnumber;
  46. // 照片地址
  47. @ApiModelProperty(value = "照片地址", name = "imgurl")
  48. private String imgurl;
  49. public BisInspMeetDiscussPersParam() {
  50. }
  51. public List<BisInspMeetDiscussPers> getId() {
  52. return id;
  53. }
  54. public void setId(List<BisInspMeetDiscussPers> id) {
  55. this.id = id;
  56. }
  57. public String getDisId() {
  58. return disId;
  59. }
  60. public String getImgurl() {
  61. return imgurl;
  62. }
  63. public void setImgurl(String imgurl) {
  64. this.imgurl = imgurl;
  65. }
  66. public void setDisId(String disId) {
  67. this.disId = disId;
  68. }
  69. public String getMethod() {
  70. return method;
  71. }
  72. public void setMethod(String method) {
  73. this.method = method;
  74. }
  75. public String getPersId() {
  76. return persId;
  77. }
  78. public void setPersId(String persId) {
  79. this.persId = persId;
  80. }
  81. public String getPersName() {
  82. return persName;
  83. }
  84. public void setPersName(String persName) {
  85. this.persName = persName;
  86. }
  87. public Date getIntm() {
  88. return intm;
  89. }
  90. public void setIntm(Date intm) {
  91. this.intm = intm;
  92. }
  93. public Date getUptm() {
  94. return uptm;
  95. }
  96. public void setUptm(Date uptm) {
  97. this.uptm = uptm;
  98. }
  99. public String getFlagValid() {
  100. return flagValid;
  101. }
  102. public void setFlagValid(String flagValid) {
  103. this.flagValid = flagValid;
  104. }
  105. public String getCallnumber() {
  106. return callnumber;
  107. }
  108. public void setCallnumber(String callnumber) {
  109. this.callnumber = callnumber;
  110. }
  111. }