b9504081ab00b8b94b2bdc51d4006727349a3b7d.svn-base 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. * BisInspPblmPlistOrgParam
  9. *
  10. * @author lhc
  11. * @date 2020-11-4
  12. */
  13. public class BisInspPblmPlistOrgParam extends PageParam implements Serializable {
  14. private String id;
  15. // 接收单位
  16. @ApiParam(name = "接收单位")
  17. @ApiModelProperty(value = "接收单位", name = "recvOrgId")
  18. private String recvOrgId;
  19. // 接收单位名称
  20. @ApiParam(name = "接收单位名称")
  21. @ApiModelProperty(value = "接收单位名称", name = "recvOrgName")
  22. private String recvOrgName;
  23. // 创建人
  24. @ApiParam(name = "创建人")
  25. @ApiModelProperty(value = "创建人", name = "persId")
  26. private String persId;
  27. // 创建人姓名
  28. @ApiParam(name = "创建人姓名")
  29. @ApiModelProperty(value = "创建人姓名", name = "persName")
  30. private String persName;
  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. // 数据状态(0:正常;9:删除)
  40. @ApiParam(name = "数据状态(0:正常;9:删除)")
  41. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  42. private String dataStat;
  43. public BisInspPblmPlistOrgParam() {
  44. }
  45. public String getId() {
  46. return id;
  47. }
  48. public void setId(String id) {
  49. this.id = id;
  50. }
  51. public String getRecvOrgId() {
  52. return recvOrgId;
  53. }
  54. public void setRecvOrgId(String recvOrgId) {
  55. this.recvOrgId = recvOrgId;
  56. }
  57. public String getRecvOrgName() {
  58. return recvOrgName;
  59. }
  60. public void setRecvOrgName(String recvOrgName) {
  61. this.recvOrgName = recvOrgName;
  62. }
  63. public String getPersId() {
  64. return persId;
  65. }
  66. public void setPersId(String persId) {
  67. this.persId = persId;
  68. }
  69. public String getPersName() {
  70. return persName;
  71. }
  72. public void setPersName(String persName) {
  73. this.persName = persName;
  74. }
  75. public Date getIntm() {
  76. return intm;
  77. }
  78. public void setIntm(Date intm) {
  79. this.intm = intm;
  80. }
  81. public Date getUptm() {
  82. return uptm;
  83. }
  84. public void setUptm(Date uptm) {
  85. this.uptm = uptm;
  86. }
  87. public String getDataStat() {
  88. return dataStat;
  89. }
  90. public void setDataStat(String dataStat) {
  91. this.dataStat = dataStat;
  92. }
  93. }