| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class BisInspGrwNormalDto implements Serializable {
- @ApiModelProperty(value = "主键")
- private String id;
- @ApiModelProperty(value = "测站类别 国家级:NATIONAL 省级自动:PROVAUTO 省级手动:PROVHAND 省级监测站(未知手动自动):PROV(长度:12,可为空:N)")
- private String sttp;
- @ApiModelProperty(value = "测站名称(长度:100,可为空:Y)")
- private String stnm;
- @ApiModelProperty(value = "测站编码(长度:20,可为空:N)")
- private String stcd;
- @ApiModelProperty(value = "测站地址(长度:100,可为空:Y)")
- private String stlc;
- @ApiModelProperty(value = "测站维护管理填报状态 1已填报 0未填报(长度:1,可为空:Y,默认值:'0')")
- private String maintainStatus;
- @ApiModelProperty(value = "检测数据质量和到报率填报状态 1已填报 0未填报(长度:1,可为空:Y,默认值:'0')")
- private String percentageStatus;
- @ApiModelProperty(value = "检查评价状态 1已填报 0未填报")
- private String chkCommentStatus;
- @ApiModelProperty(value = "监测频率 字典 DAY:日 FDAY:五日 OTHER:其他(长度:12,可为空:Y)")
- private String monitorRate;
- @ApiModelProperty(value = "总分 [0,100](精度:3,可为空:Y)")
- private Long allScore;
- @ApiModelProperty(value = "测站维护管理得分 [0,100](精度:3,可为空:Y)")
- private Long maintainScore;
- @ApiModelProperty(value = "检测数据质量和到报率得分 [0,100](精度:3,可为空:Y)")
- private Long percentScore;
- @ApiModelProperty(value = "东经(度)(精度:10,小数位:6,可为空:Y)")
- private Double lgtd;
- @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
- private Double lttdPc;
- @ApiModelProperty(value = "北纬(度)(精度:10,小数位:6,可为空:Y)")
- private Double lttd;
- @ApiModelProperty(value = "(精度:10,小数位:6,可为空:Y)")
- private Double lgtdPc;
- @ApiModelProperty(value = "督查状态 0未督查 1督查中 2已督查(长度:12,可为空:Y,默认值:'0')")
- private String inspState;
- public String getInspState() {
- return inspState;
- }
- public void setInspState(String inspState) {
- this.inspState = inspState;
- }
- public Long getMaintainScore() {
- return maintainScore;
- }
- public void setMaintainScore(Long maintainScore) {
- this.maintainScore = maintainScore;
- }
- public Long getPercentScore() {
- return percentScore;
- }
- public void setPercentScore(Long percentScore) {
- this.percentScore = percentScore;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSttp() {
- return sttp;
- }
- public void setSttp(String sttp) {
- this.sttp = sttp;
- }
- public String getStnm() {
- return stnm;
- }
- public void setStnm(String stnm) {
- this.stnm = stnm;
- }
- public String getStcd() {
- return stcd;
- }
- public void setStcd(String stcd) {
- this.stcd = stcd;
- }
- public String getStlc() {
- return stlc;
- }
- public void setStlc(String stlc) {
- this.stlc = stlc;
- }
- public String getMaintainStatus() {
- return maintainStatus;
- }
- public void setMaintainStatus(String maintainStatus) {
- this.maintainStatus = maintainStatus;
- }
- public String getPercentageStatus() {
- return percentageStatus;
- }
- public void setPercentageStatus(String percentageStatus) {
- this.percentageStatus = percentageStatus;
- }
- public String getChkCommentStatus() {
- return chkCommentStatus;
- }
- public void setChkCommentStatus(String chkCommentStatus) {
- this.chkCommentStatus = chkCommentStatus;
- }
- public String getMonitorRate() {
- return monitorRate;
- }
- public void setMonitorRate(String monitorRate) {
- this.monitorRate = monitorRate;
- }
- public Long getAllScore() {
- return allScore;
- }
- public void setAllScore(Long allScore) {
- this.allScore = allScore;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttdPc() {
- return lttdPc;
- }
- public void setLttdPc(Double lttdPc) {
- this.lttdPc = lttdPc;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdPc() {
- return lgtdPc;
- }
- public void setLgtdPc(Double lgtdPc) {
- this.lgtdPc = lgtdPc;
- }
- }
|