be9223ea5131a0b2412f537e6e2c89c6e02d1e9a.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. /**
  4. * Created by 61618 on 2019/3/2.
  5. */
  6. public class WrWsB implements Serializable {
  7. private String wsCd;//编码
  8. private String wsNm;//名称
  9. private String wsA;//面积
  10. private String wqGoal;//水质目标
  11. private String consCond;//建设状况
  12. private String putProdTm;//投产时间
  13. private String punCond;//运行状况
  14. private String wsObj;//供水对象
  15. private String whsManCd;//水源地管理单位代码
  16. private String whsApprCd;//水源地审批单位代码
  17. private Double lgtd;
  18. private Double lttd;
  19. private Double lgtdpc;
  20. private Double lttdpc;
  21. public Double getLgtd() {
  22. return lgtd;
  23. }
  24. public void setLgtd(Double lgtd) {
  25. this.lgtd = lgtd;
  26. }
  27. public Double getLttd() {
  28. return lttd;
  29. }
  30. public void setLttd(Double lttd) {
  31. this.lttd = lttd;
  32. }
  33. public Double getLgtdpc() {
  34. return lgtdpc;
  35. }
  36. public void setLgtdpc(Double lgtdpc) {
  37. this.lgtdpc = lgtdpc;
  38. }
  39. public Double getLttdpc() {
  40. return lttdpc;
  41. }
  42. public void setLttdpc(Double lttdpc) {
  43. this.lttdpc = lttdpc;
  44. }
  45. public String getWsCd() {
  46. return wsCd;
  47. }
  48. public void setWsCd(String wsCd) {
  49. this.wsCd = wsCd;
  50. }
  51. public String getWsNm() {
  52. return wsNm;
  53. }
  54. public void setWsNm(String wsNm) {
  55. this.wsNm = wsNm;
  56. }
  57. public String getWsA() {
  58. return wsA;
  59. }
  60. public void setWsA(String wsA) {
  61. this.wsA = wsA;
  62. }
  63. public String getWqGoal() {
  64. return wqGoal;
  65. }
  66. public void setWqGoal(String wqGoal) {
  67. this.wqGoal = wqGoal;
  68. }
  69. public String getConsCond() {
  70. return consCond;
  71. }
  72. public void setConsCond(String consCond) {
  73. this.consCond = consCond;
  74. }
  75. public String getPutProdTm() {
  76. return putProdTm;
  77. }
  78. public void setPutProdTm(String putProdTm) {
  79. this.putProdTm = putProdTm;
  80. }
  81. public String getPunCond() {
  82. return punCond;
  83. }
  84. public void setPunCond(String punCond) {
  85. this.punCond = punCond;
  86. }
  87. public String getWsObj() {
  88. return wsObj;
  89. }
  90. public void setWsObj(String wsObj) {
  91. this.wsObj = wsObj;
  92. }
  93. public String getWhsManCd() {
  94. return whsManCd;
  95. }
  96. public void setWhsManCd(String whsManCd) {
  97. this.whsManCd = whsManCd;
  98. }
  99. public String getWhsApprCd() {
  100. return whsApprCd;
  101. }
  102. public void setWhsApprCd(String whsApprCd) {
  103. this.whsApprCd = whsApprCd;
  104. }
  105. @Override
  106. public String toString() {
  107. return "WrWsB{" +
  108. "wsCod='" + wsCd + '\'' +
  109. ", wsNm='" + wsNm + '\'' +
  110. ", wsA='" + wsA + '\'' +
  111. ", wqGoal='" + wqGoal + '\'' +
  112. ", consCond='" + consCond + '\'' +
  113. ", putProdTm='" + putProdTm + '\'' +
  114. ", punCond='" + punCond + '\'' +
  115. ", wsObj='" + wsObj + '\'' +
  116. ", whsManCd='" + whsManCd + '\'' +
  117. ", whsApprCd='" + whsApprCd + '\'' +
  118. '}';
  119. }
  120. }