a59492460083c3b00be16c6902091e048b213883.svn-base 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. * BisInspPlanDtlPtypParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-9
  12. */
  13. public class BisInspPlanDtlPtypParam 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 = "planDtlId")
  21. private String planDtlId;
  22. // 对象名称
  23. @ApiParam(name = "对象名称")
  24. @ApiModelProperty(value = "对象名称", name = "nm")
  25. private String nm;
  26. // 对象类型
  27. @ApiParam(name = "对象类型")
  28. @ApiModelProperty(value = "对象类型", name = "ptype")
  29. private String ptype;
  30. // 创建人
  31. @ApiParam(name = "创建人")
  32. @ApiModelProperty(value = "创建人", name = "persId")
  33. private String persId;
  34. // 创建时间
  35. @ApiParam(name = "创建时间")
  36. @ApiModelProperty(value = "创建时间", name = "intm")
  37. private Date intm;
  38. // 修改时间
  39. @ApiParam(name = "修改时间")
  40. @ApiModelProperty(value = "修改时间", name = "uptm")
  41. private Date uptm;
  42. // 数据状态
  43. @ApiParam(name = "数据状态")
  44. @ApiModelProperty(value = "数据状态", name = "dataStat")
  45. private String dataStat;
  46. public BisInspPlanDtlPtypParam() {
  47. }
  48. public BisInspPlanDtlPtypParam(String planDtlId) {
  49. this.planDtlId = planDtlId;
  50. }
  51. public String getId() {
  52. return id;
  53. }
  54. public void setId(String id) {
  55. this.id = id;
  56. }
  57. public String getPlanDtlId() {
  58. return planDtlId;
  59. }
  60. public void setPlanDtlId(String planDtlId) {
  61. this.planDtlId = planDtlId;
  62. }
  63. public String getNm() {
  64. return nm;
  65. }
  66. public void setNm(String nm) {
  67. this.nm = nm;
  68. }
  69. public String getPtype() {
  70. return ptype;
  71. }
  72. public void setPtype(String ptype) {
  73. this.ptype = ptype;
  74. }
  75. public String getPersId() {
  76. return persId;
  77. }
  78. public void setPersId(String persId) {
  79. this.persId = persId;
  80. }
  81. public Date getIntm() {
  82. return intm;
  83. }
  84. public void setIntm(Date intm) {
  85. this.intm = intm;
  86. }
  87. public Date getUptm() {
  88. return uptm;
  89. }
  90. public void setUptm(Date uptm) {
  91. this.uptm = uptm;
  92. }
  93. public String getDataStat() {
  94. return dataStat;
  95. }
  96. public void setDataStat(String dataStat) {
  97. this.dataStat = dataStat;
  98. }
  99. }