| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- /**
- * WrGwsBParam
- *
- * @author zhengdafei
- * @date 2019-3-3
- */
- public class WrGwsBParam extends PageParam implements Serializable {
- private Double lgtd;
- private Double lttd;
- private Double lgtdpc;
- private Double lttdpc;
- private String gwsCd;
- private String gwsNm;
- private Double gwsA;
- private String rangDesc;
- private String wqGoal;
- private String consCond;
- private String putProdTm;
- private String runCond;
- private Double avgExpYd;
- private String wsObj;
- private Double desInt;
- private Double permInt;
- private String whsManCd;
- private String whsApprCd;
- private String ts;
- private String nt;
- private String reportFrquency;
- private String isuse;
- private String monG;
- private String isEmg;
- private String adCode;
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public WrGwsBParam() {
- }
- 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 getGwsCd() {
- return gwsCd;
- }
- public void setGwsCd(String gwsCd) {
- this.gwsCd = gwsCd;
- }
- public String getGwsNm() {
- return gwsNm;
- }
- public void setGwsNm(String gwsNm) {
- this.gwsNm = gwsNm;
- }
- public Double getGwsA() {
- return gwsA;
- }
- public void setGwsA(Double gwsA) {
- this.gwsA = gwsA;
- }
- public String getRangDesc() {
- return rangDesc;
- }
- public void setRangDesc(String rangDesc) {
- this.rangDesc = rangDesc;
- }
- 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 getRunCond() {
- return runCond;
- }
- public void setRunCond(String runCond) {
- this.runCond = runCond;
- }
- public Double getAvgExpYd() {
- return avgExpYd;
- }
- public void setAvgExpYd(Double avgExpYd) {
- this.avgExpYd = avgExpYd;
- }
- public String getWsObj() {
- return wsObj;
- }
- public void setWsObj(String wsObj) {
- this.wsObj = wsObj;
- }
- public Double getDesInt() {
- return desInt;
- }
- public void setDesInt(Double desInt) {
- this.desInt = desInt;
- }
- public Double getPermInt() {
- return permInt;
- }
- public void setPermInt(Double permInt) {
- this.permInt = permInt;
- }
- 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;
- }
- public String getTs() {
- return ts;
- }
- public void setTs(String ts) {
- this.ts = ts;
- }
- public String getNt() {
- return nt;
- }
- public void setNt(String nt) {
- this.nt = nt;
- }
- public String getReportFrquency() {
- return reportFrquency;
- }
- public void setReportFrquency(String reportFrquency) {
- this.reportFrquency = reportFrquency;
- }
- public String getIsuse() {
- return isuse;
- }
- public void setIsuse(String isuse) {
- this.isuse = isuse;
- }
- public String getMonG() {
- return monG;
- }
- public void setMonG(String monG) {
- this.monG = monG;
- }
- public String getIsEmg() {
- return isEmg;
- }
- public void setIsEmg(String isEmg) {
- this.isEmg = isEmg;
- }
- }
|