df8324dd18b59d1241d745aadbe04f195e4a830b.svn-base 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspRectLog
  9. *
  10. * @author lhc
  11. * @date 2019-12-25
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRectLog extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 整改通知ID
  19. @ApiModelProperty(value = "整改通知ID", name = "rectId")
  20. private String rectId;
  21. // 操作描述
  22. @ApiModelProperty(value = "操作描述", name = "actionDes")
  23. private String actionDes;
  24. // 备注
  25. @ApiModelProperty(value = "备注", name = "note")
  26. private String note;
  27. // 单位代码
  28. @ApiModelProperty(value = "单位代码", name = "orgId")
  29. private String orgId;
  30. // 单位名称
  31. @ApiModelProperty(value = "单位名称", name = "orgName")
  32. private String orgName;
  33. // 创建人
  34. @ApiModelProperty(value = "创建人", name = "persId")
  35. private String persId;
  36. // 创建人姓名
  37. @ApiModelProperty(value = "创建人姓名", name = "persName")
  38. private String persName;
  39. // 创建时间
  40. @ApiModelProperty(value = "创建时间", name = "intm")
  41. private Date intm;
  42. // 修改时间
  43. @ApiModelProperty(value = "修改时间", name = "uptm")
  44. private Date uptm;
  45. // 数据状态(0:正常;9:删除)
  46. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  47. private String dataStat;
  48. public BisInspRectLog() {
  49. }
  50. public String getId() {
  51. return id;
  52. }
  53. public void setId(String id) {
  54. this.id = id;
  55. }
  56. public String getRectId() {
  57. return rectId;
  58. }
  59. public void setRectId(String rectId) {
  60. this.rectId = rectId;
  61. }
  62. public String getActionDes() {
  63. return actionDes;
  64. }
  65. public void setActionDes(String actionDes) {
  66. this.actionDes = actionDes;
  67. }
  68. public String getNote() {
  69. return note;
  70. }
  71. public void setNote(String note) {
  72. this.note = note;
  73. }
  74. @Override
  75. public String getOrgId() {
  76. return orgId;
  77. }
  78. @Override
  79. public void setOrgId(String orgId) {
  80. this.orgId = orgId;
  81. }
  82. public String getOrgName() {
  83. return orgName;
  84. }
  85. public void setOrgName(String orgName) {
  86. this.orgName = orgName;
  87. }
  88. public String getPersId() {
  89. return persId;
  90. }
  91. public void setPersId(String persId) {
  92. this.persId = persId;
  93. }
  94. public String getPersName() {
  95. return persName;
  96. }
  97. public void setPersName(String persName) {
  98. this.persName = persName;
  99. }
  100. public Date getIntm() {
  101. return intm;
  102. }
  103. public void setIntm(Date intm) {
  104. this.intm = intm;
  105. }
  106. public Date getUptm() {
  107. return uptm;
  108. }
  109. public void setUptm(Date uptm) {
  110. this.uptm = uptm;
  111. }
  112. public String getDataStat() {
  113. return dataStat;
  114. }
  115. public void setDataStat(String dataStat) {
  116. this.dataStat = dataStat;
  117. }
  118. @Override
  119. public String toString() {
  120. return "BisInspRectLog [" + "id=" + id + ", rectId=" + rectId + ", actionDes=" + actionDes + ", note=" + note + ", orgId=" + orgId + ", orgName=" + orgName + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  121. }
  122. }