| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- /**
- * Created by 61618 on 2019/3/2.
- */
- public class WrWsB implements Serializable {
- private String wsCd;//编码
- private String wsNm;//名称
- private String wsA;//面积
- private String wqGoal;//水质目标
- private String consCond;//建设状况
- private String putProdTm;//投产时间
- private String punCond;//运行状况
- private String wsObj;//供水对象
- private String whsManCd;//水源地管理单位代码
- private String whsApprCd;//水源地审批单位代码
- private Double lgtd;
- private Double lttd;
- private Double lgtdpc;
- private Double lttdpc;
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- 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;
- }
- public Double getLttdpc() {
- return lttdpc;
- }
- public void setLttdpc(Double lttdpc) {
- this.lttdpc = lttdpc;
- }
- public String getWsCd() {
- return wsCd;
- }
- public void setWsCd(String wsCd) {
- this.wsCd = wsCd;
- }
- public String getWsNm() {
- return wsNm;
- }
- public void setWsNm(String wsNm) {
- this.wsNm = wsNm;
- }
- public String getWsA() {
- return wsA;
- }
- public void setWsA(String wsA) {
- this.wsA = wsA;
- }
- public String getWqGoal() {
- return wqGoal;
- }
- public void setWqGoal(String wqGoal) {
- this.wqGoal = wqGoal;
- }
- public String getConsCond() {
- return consCond;
- }
- public void setConsCond(String consCond) {
- this.consCond = consCond;
- }
- public String getPutProdTm() {
- return putProdTm;
- }
- public void setPutProdTm(String putProdTm) {
- this.putProdTm = putProdTm;
- }
- public String getPunCond() {
- return punCond;
- }
- public void setPunCond(String punCond) {
- this.punCond = punCond;
- }
- public String getWsObj() {
- return wsObj;
- }
- public void setWsObj(String wsObj) {
- this.wsObj = wsObj;
- }
- public String getWhsManCd() {
- return whsManCd;
- }
- public void setWhsManCd(String whsManCd) {
- this.whsManCd = whsManCd;
- }
- public String getWhsApprCd() {
- return whsApprCd;
- }
- public void setWhsApprCd(String whsApprCd) {
- this.whsApprCd = whsApprCd;
- }
- @Override
- public String toString() {
- return "WrWsB{" +
- "wsCod='" + wsCd + '\'' +
- ", wsNm='" + wsNm + '\'' +
- ", wsA='" + wsA + '\'' +
- ", wqGoal='" + wqGoal + '\'' +
- ", consCond='" + consCond + '\'' +
- ", putProdTm='" + putProdTm + '\'' +
- ", punCond='" + punCond + '\'' +
- ", wsObj='" + wsObj + '\'' +
- ", whsManCd='" + whsManCd + '\'' +
- ", whsApprCd='" + whsApprCd + '\'' +
- '}';
- }
- }
|