0eb791c554a2a38a74cbca8af770841ef404bd3f.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. * BisInspPblmMendPriParam
  9. *
  10. * @author lhc
  11. * @date 2021-11-18
  12. */
  13. public class BisInspPblmMendPriParam extends PageParam implements Serializable {
  14. private String id;
  15. // 人员ID
  16. @ApiParam(name = "人员ID")
  17. @ApiModelProperty(value = "人员ID", name = "mandPersId")
  18. private String mandPersId;
  19. // 分配问题来源类型(汉字)
  20. @ApiParam(name = "分配问题来源类型(汉字)")
  21. @ApiModelProperty(value = "分配问题来源类型(汉字)", name = "pblmClassify")
  22. private String pblmClassify;
  23. // 备注 | 驳回原因
  24. @ApiParam(name = "备注 | 驳回原因")
  25. @ApiModelProperty(value = "备注 | 驳回原因", name = "note")
  26. private String note;
  27. // 创建时间
  28. @ApiParam(name = "创建时间")
  29. @ApiModelProperty(value = "创建时间", name = "intm")
  30. private Date intm;
  31. // 修改时间
  32. @ApiParam(name = "修改时间")
  33. @ApiModelProperty(value = "修改时间", name = "uptm")
  34. private Date uptm;
  35. // 数据状态(0:正常;9:删除)
  36. @ApiParam(name = "数据状态(0:正常;9:删除)")
  37. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  38. private String dataStat;
  39. // 操作人ID
  40. @ApiParam(name = "操作人ID")
  41. @ApiModelProperty(value = "操作人ID", name = "persId")
  42. private String persId;
  43. // 操作人姓名
  44. @ApiParam(name = "操作人姓名")
  45. @ApiModelProperty(value = "操作人姓名", name = "persName")
  46. private String persName;
  47. public BisInspPblmMendPriParam() {
  48. }
  49. public String getId() {
  50. return id;
  51. }
  52. public void setId(String id) {
  53. this.id = id;
  54. }
  55. public String getMandPersId() {
  56. return mandPersId;
  57. }
  58. public void setMandPersId(String mandPersId) {
  59. this.mandPersId = mandPersId;
  60. }
  61. public String getPblmClassify() {
  62. return pblmClassify;
  63. }
  64. public void setPblmClassify(String pblmClassify) {
  65. this.pblmClassify = pblmClassify;
  66. }
  67. public String getNote() {
  68. return note;
  69. }
  70. public void setNote(String note) {
  71. this.note = note;
  72. }
  73. public Date getIntm() {
  74. return intm;
  75. }
  76. public void setIntm(Date intm) {
  77. this.intm = intm;
  78. }
  79. public Date getUptm() {
  80. return uptm;
  81. }
  82. public void setUptm(Date uptm) {
  83. this.uptm = uptm;
  84. }
  85. public String getDataStat() {
  86. return dataStat;
  87. }
  88. public void setDataStat(String dataStat) {
  89. this.dataStat = dataStat;
  90. }
  91. public String getPersId() {
  92. return persId;
  93. }
  94. public void setPersId(String persId) {
  95. this.persId = persId;
  96. }
  97. public String getPersName() {
  98. return persName;
  99. }
  100. public void setPersName(String persName) {
  101. this.persName = persName;
  102. }
  103. }