f75579f9dc496f63660733fb7a4af6e3bb0aba0a.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. * TacAttPawpBaseChangeLogParam
  9. *
  10. * @author hx
  11. * @date 2021-1-19
  12. */
  13. public class TacAttPawpBaseChangeLogParam 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 = "ojbId")
  21. private String ojbId;
  22. @ApiModelProperty(value="稽察项目名称",name="ojbName")
  23. private String ojbName;
  24. // 年份(每年固定添加50个项目)
  25. @ApiParam(name = "年份(每年固定添加50个项目)")
  26. @ApiModelProperty(value = "年份(每年固定添加50个项目)", name = "year")
  27. private Long year;
  28. // 调整原因
  29. @ApiParam(name = "调整原因")
  30. @ApiModelProperty(value = "调整原因", name = "changeReson")
  31. private String changeReson;
  32. // 调整内容
  33. @ApiParam(name = "调整内容")
  34. @ApiModelProperty(value = "调整内容", name = "content")
  35. private String content;
  36. // 创建人ID
  37. @ApiParam(name = "创建人ID")
  38. @ApiModelProperty(value = "创建人ID", name = "persId")
  39. private String persId;
  40. // 创建人名称
  41. @ApiParam(name = "创建人名称")
  42. @ApiModelProperty(value = "创建人名称", name = "persName")
  43. private String persName;
  44. // 调整时间
  45. @ApiParam(name = "调整时间")
  46. @ApiModelProperty(value = "调整时间", name = "intm")
  47. private Date intm;
  48. public TacAttPawpBaseChangeLogParam() {
  49. }
  50. public String getId() {
  51. return id;
  52. }
  53. public void setId(String id) {
  54. this.id = id;
  55. }
  56. public String getOjbId() {
  57. return ojbId;
  58. }
  59. public void setOjbId(String ojbId) {
  60. this.ojbId = ojbId;
  61. }
  62. public String getOjbName() {
  63. return ojbName;
  64. }
  65. public void setOjbName(String ojbName) {
  66. this.ojbName = ojbName;
  67. }
  68. public Long getYear() {
  69. return year;
  70. }
  71. public void setYear(Long year) {
  72. this.year = year;
  73. }
  74. public String getChangeReson() {
  75. return changeReson;
  76. }
  77. public void setChangeReson(String changeReson) {
  78. this.changeReson = changeReson;
  79. }
  80. public String getContent() {
  81. return content;
  82. }
  83. public void setContent(String content) {
  84. this.content = content;
  85. }
  86. public String getPersId() {
  87. return persId;
  88. }
  89. public void setPersId(String persId) {
  90. this.persId = persId;
  91. }
  92. public String getPersName() {
  93. return persName;
  94. }
  95. public void setPersName(String persName) {
  96. this.persName = persName;
  97. }
  98. public Date getIntm() {
  99. return intm;
  100. }
  101. public void setIntm(Date intm) {
  102. this.intm = intm;
  103. }
  104. }