f3fe1cd30b6fec551fd76d6157ce5384e5d81fcf.svn-base 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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:BisInspFjaccpCimt
  9. *
  10. * @author lhc
  11. * @date 2023-11-8
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspFjaccpCimt extends BaseBean implements Serializable {
  15. private String id;
  16. // 登记表ID
  17. @ApiModelProperty(value="登记表ID",name="rgstrId")
  18. private String rgstrId;
  19. private Double f811;
  20. private Double f812;
  21. private Double f813;
  22. private Double f814;
  23. private Double f815;
  24. private Double f821;
  25. // 备注
  26. @ApiModelProperty(value="备注",name="note")
  27. private String note;
  28. // 记录人员ID
  29. @ApiModelProperty(value="记录人员ID",name="persId")
  30. private String persId;
  31. // 创建时间
  32. @ApiModelProperty(value="创建时间",name="intm")
  33. private Date intm;
  34. // 最后修改时间
  35. @ApiModelProperty(value="最后修改时间",name="uptm")
  36. private Date uptm;
  37. // 数据状态
  38. @ApiModelProperty(value="数据状态",name="dataStat")
  39. private String dataStat;
  40. // 督查状态
  41. @ApiModelProperty(value="督查状态",name="state")
  42. private String state;
  43. public BisInspFjaccpCimt() {
  44. }
  45. public String getId() {
  46. return id;
  47. }
  48. public void setId(String id) {
  49. this.id = id;
  50. }
  51. public String getRgstrId() {
  52. return rgstrId;
  53. }
  54. public void setRgstrId(String rgstrId) {
  55. this.rgstrId = rgstrId;
  56. }
  57. public Double getF811() {
  58. return f811;
  59. }
  60. public void setF811(Double f811) {
  61. this.f811 = f811;
  62. }
  63. public Double getF812() {
  64. return f812;
  65. }
  66. public void setF812(Double f812) {
  67. this.f812 = f812;
  68. }
  69. public Double getF813() {
  70. return f813;
  71. }
  72. public void setF813(Double f813) {
  73. this.f813 = f813;
  74. }
  75. public Double getF814() {
  76. return f814;
  77. }
  78. public void setF814(Double f814) {
  79. this.f814 = f814;
  80. }
  81. public Double getF815() {
  82. return f815;
  83. }
  84. public void setF815(Double f815) {
  85. this.f815 = f815;
  86. }
  87. public Double getF821() {
  88. return f821;
  89. }
  90. public void setF821(Double f821) {
  91. this.f821 = f821;
  92. }
  93. public String getNote() {
  94. return note;
  95. }
  96. public void setNote(String note) {
  97. this.note = note;
  98. }
  99. public String getPersId() {
  100. return persId;
  101. }
  102. public void setPersId(String persId) {
  103. this.persId = persId;
  104. }
  105. public Date getIntm() {
  106. return intm;
  107. }
  108. public void setIntm(Date intm) {
  109. this.intm = intm;
  110. }
  111. public Date getUptm() {
  112. return uptm;
  113. }
  114. public void setUptm(Date uptm) {
  115. this.uptm = uptm;
  116. }
  117. public String getDataStat() {
  118. return dataStat;
  119. }
  120. public void setDataStat(String dataStat) {
  121. this.dataStat = dataStat;
  122. }
  123. public String getState() {
  124. return state;
  125. }
  126. public void setState(String state) {
  127. this.state = state;
  128. }
  129. @Override
  130. public String toString() {
  131. return "BisInspFjaccpCimt [" + "id=" + id + ", rgstrId=" + rgstrId + ", f811=" + f811 + ", f812=" + f812 + ", f813=" + f813 + ", f814=" + f814 + ", f815=" + f815 + ", f821=" + f821 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + "]";
  132. }
  133. }