TgjjDwzhxx.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. package com.sooka.model.bo;
  2. import com.google.gson.annotations.Expose;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. /**
  8. * 【请填写功能名称】对象 tgjj_dwzhxx
  9. *
  10. * @author lei
  11. * @date 2021-11-15
  12. */
  13. public class TgjjDwzhxx extends TgjjBaseBean
  14. {
  15. private static final long serialVersionUID = 1L;
  16. @Expose
  17. private String DWZH;
  18. @Expose
  19. private BigDecimal DWJCBL;
  20. @Expose
  21. private BigDecimal GRJCBL;
  22. @Expose
  23. private Long DWJCRS;
  24. @Expose
  25. private Long DWFCRS;
  26. @Expose
  27. private BigDecimal DWZHYE;
  28. @Expose
  29. private Date DWXHRQ;
  30. @Expose
  31. private String DWXHYY;
  32. @Expose
  33. private String DWZHZT;
  34. @Expose
  35. private String JZNY;
  36. @Expose
  37. private String ZXBH;
  38. @Expose
  39. private Date lastUpdateTime;
  40. public void setDWZH(String DWZH)
  41. {
  42. this.DWZH = DWZH;
  43. }
  44. public String getDWZH()
  45. {
  46. return DWZH;
  47. }
  48. public void setDWJCBL(BigDecimal DWJCBL)
  49. {
  50. this.DWJCBL = DWJCBL;
  51. }
  52. public BigDecimal getDWJCBL()
  53. {
  54. return DWJCBL;
  55. }
  56. public void setGRJCBL(BigDecimal GRJCBL)
  57. {
  58. this.GRJCBL = GRJCBL;
  59. }
  60. public BigDecimal getGRJCBL()
  61. {
  62. return GRJCBL;
  63. }
  64. public void setDWJCRS(Long DWJCRS)
  65. {
  66. this.DWJCRS = DWJCRS;
  67. }
  68. public Long getDWJCRS()
  69. {
  70. return DWJCRS;
  71. }
  72. public void setDWFCRS(Long DWFCRS)
  73. {
  74. this.DWFCRS = DWFCRS;
  75. }
  76. public Long getDWFCRS()
  77. {
  78. return DWFCRS;
  79. }
  80. public void setDWZHYE(BigDecimal DWZHYE)
  81. {
  82. this.DWZHYE = DWZHYE;
  83. }
  84. public BigDecimal getDWZHYE()
  85. {
  86. return DWZHYE;
  87. }
  88. public void setDWXHRQ(Date DWXHRQ)
  89. {
  90. this.DWXHRQ = DWXHRQ;
  91. }
  92. public Date getDWXHRQ()
  93. {
  94. return DWXHRQ;
  95. }
  96. public void setDWXHYY(String DWXHYY)
  97. {
  98. this.DWXHYY = DWXHYY;
  99. }
  100. public String getDWXHYY()
  101. {
  102. return DWXHYY;
  103. }
  104. public void setDWZHZT(String DWZHZT)
  105. {
  106. this.DWZHZT = DWZHZT;
  107. }
  108. public String getDWZHZT()
  109. {
  110. return DWZHZT;
  111. }
  112. public void setJZNY(String JZNY)
  113. {
  114. this.JZNY = JZNY;
  115. }
  116. public String getJZNY()
  117. {
  118. return JZNY;
  119. }
  120. public void setZXBH(String ZXBH)
  121. {
  122. this.ZXBH = ZXBH;
  123. }
  124. public String getZXBH()
  125. {
  126. return ZXBH;
  127. }
  128. public void setLastUpdateTime(Date lastUpdateTime)
  129. {
  130. this.lastUpdateTime = lastUpdateTime;
  131. }
  132. public Date getLastUpdateTime()
  133. {
  134. return lastUpdateTime;
  135. }
  136. @Override
  137. public String toString() {
  138. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  139. .append("DWZH", getDWZH())
  140. .append("DWJCBL", getDWJCBL())
  141. .append("GRJCBL", getGRJCBL())
  142. .append("DWJCRS", getDWJCRS())
  143. .append("DWFCRS", getDWFCRS())
  144. .append("DWZHYE", getDWZHYE())
  145. .append("DWXHRQ", getDWXHRQ())
  146. .append("DWXHYY", getDWXHYY())
  147. .append("DWZHZT", getDWZHZT())
  148. .append("JZNY", getJZNY())
  149. .append("ZXBH", getZXBH())
  150. .append("lastUpdateTime", getLastUpdateTime())
  151. .append("CLLX", getCLLX())
  152. .toString();
  153. }
  154. }