babe4087faee898cc7913c4b4181f3e8b10c4095.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspRectLogProvince
  9. *
  10. * @author lhc
  11. * @date 2020-4-8
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRectLogProvince 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. // 0:处室新建未提交 1:处室提交待监督处审核 2:处室提交监督处驳回 3:监督处审核下发 4:市级提交反馈 5:业务处室驳回 6:业务处室审核通过 7:监督处归档
  28. @ApiModelProperty(value = "0:处室新建未提交 1:处室提交待监督处审核 2:处室提交监督处驳回 3:监督处审核下发 4:市级提交反馈 5:业务处室驳回 6:业务处室审核通过 7:监督处归档 ", name = "state")
  29. private String state;
  30. // 操作人单位代码
  31. @ApiModelProperty(value = "操作人单位代码", name = "orgId")
  32. private String orgId;
  33. // 操作人单位名称
  34. @ApiModelProperty(value = "操作人单位名称", name = "orgName")
  35. private String orgName;
  36. // 操作人ID
  37. @ApiModelProperty(value = "操作人ID", name = "persId")
  38. private String persId;
  39. // 操作人姓名
  40. @ApiModelProperty(value = "操作人姓名", name = "persName")
  41. private String persName;
  42. // 创建时间
  43. @ApiModelProperty(value = "创建时间", name = "intm")
  44. private Date intm;
  45. // 修改时间
  46. @ApiModelProperty(value = "修改时间", name = "uptm")
  47. private Date uptm;
  48. // 数据状态(0:正常;9:删除)
  49. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  50. private String dataStat;
  51. public BisInspRectLogProvince() {
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getRectId() {
  60. return rectId;
  61. }
  62. public void setRectId(String rectId) {
  63. this.rectId = rectId;
  64. }
  65. public String getActionDes() {
  66. return actionDes;
  67. }
  68. public void setActionDes(String actionDes) {
  69. this.actionDes = actionDes;
  70. }
  71. public String getNote() {
  72. return note;
  73. }
  74. public void setNote(String note) {
  75. this.note = note;
  76. }
  77. public String getState() {
  78. return state;
  79. }
  80. public void setState(String state) {
  81. this.state = state;
  82. }
  83. @Override
  84. public String getOrgId() {
  85. return orgId;
  86. }
  87. @Override
  88. public void setOrgId(String orgId) {
  89. this.orgId = orgId;
  90. }
  91. public String getOrgName() {
  92. return orgName;
  93. }
  94. public void setOrgName(String orgName) {
  95. this.orgName = orgName;
  96. }
  97. public String getPersId() {
  98. return persId;
  99. }
  100. public void setPersId(String persId) {
  101. this.persId = persId;
  102. }
  103. public String getPersName() {
  104. return persName;
  105. }
  106. public void setPersName(String persName) {
  107. this.persName = persName;
  108. }
  109. public Date getIntm() {
  110. return intm;
  111. }
  112. public void setIntm(Date intm) {
  113. this.intm = intm;
  114. }
  115. public Date getUptm() {
  116. return uptm;
  117. }
  118. public void setUptm(Date uptm) {
  119. this.uptm = uptm;
  120. }
  121. public String getDataStat() {
  122. return dataStat;
  123. }
  124. public void setDataStat(String dataStat) {
  125. this.dataStat = dataStat;
  126. }
  127. @Override
  128. public String toString() {
  129. return "BisInspRectLogProvince [" + "id=" + id + ", rectId=" + rectId + ", actionDes=" + actionDes + ", note=" + note + ", state=" + state + ", orgId=" + orgId + ", orgName=" + orgName + ", persId=" + persId + ", persName=" + persName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  130. }
  131. }