7282360c7437734d55c314033af548cfaa59a916.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class BisInspGrwNormalDto implements Serializable {
  5. @ApiModelProperty(value = "主键")
  6. private String id;
  7. @ApiModelProperty(value = "测站类别 国家级:NATIONAL 省级自动:PROVAUTO 省级手动:PROVHAND 省级监测站(未知手动自动):PROV(长度:12,可为空:N)")
  8. private String sttp;
  9. @ApiModelProperty(value = "测站名称(长度:100,可为空:Y)")
  10. private String stnm;
  11. @ApiModelProperty(value = "测站编码(长度:20,可为空:N)")
  12. private String stcd;
  13. @ApiModelProperty(value = "测站地址(长度:100,可为空:Y)")
  14. private String stlc;
  15. @ApiModelProperty(value = "测站维护管理填报状态 1已填报 0未填报(长度:1,可为空:Y,默认值:'0')")
  16. private String maintainStatus;
  17. @ApiModelProperty(value = "检测数据质量和到报率填报状态 1已填报 0未填报(长度:1,可为空:Y,默认值:'0')")
  18. private String percentageStatus;
  19. @ApiModelProperty(value = "检查评价状态 1已填报 0未填报")
  20. private String chkCommentStatus;
  21. @ApiModelProperty(value = "监测频率 字典 DAY:日 FDAY:五日 OTHER:其他(长度:12,可为空:Y)")
  22. private String monitorRate;
  23. @ApiModelProperty(value = "总分 [0,100](精度:3,可为空:Y)")
  24. private Long allScore;
  25. @ApiModelProperty(value = "测站维护管理得分 [0,100](精度:3,可为空:Y)")
  26. private Long maintainScore;
  27. @ApiModelProperty(value = "检测数据质量和到报率得分 [0,100](精度:3,可为空:Y)")
  28. private Long percentScore;
  29. @ApiModelProperty(value = "东经(度)(精度:10,小数位:6,可为空:Y)")
  30. private Double lgtd;
  31. @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
  32. private Double lttdPc;
  33. @ApiModelProperty(value = "北纬(度)(精度:10,小数位:6,可为空:Y)")
  34. private Double lttd;
  35. @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
  36. private Double lgtdPc;
  37. @ApiModelProperty(value = "督查状态 0未督查 1督查中 2已督查(长度:12,可为空:Y,默认值:'0')")
  38. private String inspState;
  39. public String getInspState() {
  40. return inspState;
  41. }
  42. public void setInspState(String inspState) {
  43. this.inspState = inspState;
  44. }
  45. public Long getMaintainScore() {
  46. return maintainScore;
  47. }
  48. public void setMaintainScore(Long maintainScore) {
  49. this.maintainScore = maintainScore;
  50. }
  51. public Long getPercentScore() {
  52. return percentScore;
  53. }
  54. public void setPercentScore(Long percentScore) {
  55. this.percentScore = percentScore;
  56. }
  57. public String getId() {
  58. return id;
  59. }
  60. public void setId(String id) {
  61. this.id = id;
  62. }
  63. public String getSttp() {
  64. return sttp;
  65. }
  66. public void setSttp(String sttp) {
  67. this.sttp = sttp;
  68. }
  69. public String getStnm() {
  70. return stnm;
  71. }
  72. public void setStnm(String stnm) {
  73. this.stnm = stnm;
  74. }
  75. public String getStcd() {
  76. return stcd;
  77. }
  78. public void setStcd(String stcd) {
  79. this.stcd = stcd;
  80. }
  81. public String getStlc() {
  82. return stlc;
  83. }
  84. public void setStlc(String stlc) {
  85. this.stlc = stlc;
  86. }
  87. public String getMaintainStatus() {
  88. return maintainStatus;
  89. }
  90. public void setMaintainStatus(String maintainStatus) {
  91. this.maintainStatus = maintainStatus;
  92. }
  93. public String getPercentageStatus() {
  94. return percentageStatus;
  95. }
  96. public void setPercentageStatus(String percentageStatus) {
  97. this.percentageStatus = percentageStatus;
  98. }
  99. public String getChkCommentStatus() {
  100. return chkCommentStatus;
  101. }
  102. public void setChkCommentStatus(String chkCommentStatus) {
  103. this.chkCommentStatus = chkCommentStatus;
  104. }
  105. public String getMonitorRate() {
  106. return monitorRate;
  107. }
  108. public void setMonitorRate(String monitorRate) {
  109. this.monitorRate = monitorRate;
  110. }
  111. public Long getAllScore() {
  112. return allScore;
  113. }
  114. public void setAllScore(Long allScore) {
  115. this.allScore = allScore;
  116. }
  117. public Double getLgtd() {
  118. return lgtd;
  119. }
  120. public void setLgtd(Double lgtd) {
  121. this.lgtd = lgtd;
  122. }
  123. public Double getLttdPc() {
  124. return lttdPc;
  125. }
  126. public void setLttdPc(Double lttdPc) {
  127. this.lttdPc = lttdPc;
  128. }
  129. public Double getLttd() {
  130. return lttd;
  131. }
  132. public void setLttd(Double lttd) {
  133. this.lttd = lttd;
  134. }
  135. public Double getLgtdPc() {
  136. return lgtdPc;
  137. }
  138. public void setLgtdPc(Double lgtdPc) {
  139. this.lgtdPc = lgtdPc;
  140. }
  141. }