| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisZhejiangVillRgstrParam
- *
- * @author lune
- * @date 2020-5-11
- */
- public class BisZhejiangVillRgstrParam extends PageParam implements Serializable {
- @ApiModelProperty("高德经度")
- private Double lgtd;
- @ApiModelProperty("高德纬度")
- private Double lttd;
- @ApiModelProperty("pc经度")
- private Double lgtdpc;
- @ApiModelProperty("pc纬度")
- private Double lttdpc;
- @ApiModelProperty("农村饮水工程登记表ID")
- private String id;
- @ApiModelProperty("督查对象ID")
- private String objId;
- @ApiModelProperty("督查对象名称")
- private String regsNm;
- @ApiModelProperty("农饮安全水费收缴水质保障")
- private String waterSafeOrPay;
- @ApiModelProperty("行政区编码")
- private String adCode;
- @ApiModelProperty("记录人员ID")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("最后修改时间")
- private Date uptm;
- @ApiModelProperty("备注")
- private String note;
- @ApiModelProperty("数据状态")
- private String dataStat;
- @ApiModelProperty("状态")
- private String state;
- @ApiModelProperty("行政区划名")
- private String adFullName;
- @ApiModelProperty("是否贫困县")
- private String isPkx;
- @ApiModelProperty("是否氟超标")
- private String isFoOver;
- @ApiModelProperty("行政村数量")
- private int villNum;
- @ApiModelProperty("饮水工程数量")
- private int proNum;
- public BisZhejiangVillRgstrParam() {
- }
- 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 getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getRegsNm() {
- return regsNm;
- }
- public void setRegsNm(String regsNm) {
- this.regsNm = regsNm;
- }
- public String getWaterSafeOrPay() {
- return waterSafeOrPay;
- }
- public void setWaterSafeOrPay(String waterSafeOrPay) {
- this.waterSafeOrPay = waterSafeOrPay;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getIsPkx() {
- return isPkx;
- }
- public void setIsPkx(String isPkx) {
- this.isPkx = isPkx;
- }
- public String getIsFoOver() {
- return isFoOver;
- }
- public void setIsFoOver(String isFoOver) {
- this.isFoOver = isFoOver;
- }
- public int getVillNum() {
- return villNum;
- }
- public void setVillNum(int villNum) {
- this.villNum = villNum;
- }
- public int getProNum() {
- return proNum;
- }
- public void setProNum(int proNum) {
- this.proNum = proNum;
- }
- }
|