| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:AttCwsBase
- *
- * @author zhengdafei
- * @date 2019-2-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttCwsBaseDto extends BaseBean implements Serializable {
- @ApiModelProperty("行政区划编码")
- private String addvcd;
- private String guid;
- @ApiModelProperty("编码")
- private String cwsCode;
- @ApiModelProperty("名称")
- private String cwsName;
- @ApiModelProperty("经度")
- private Double cwsLong;
- @ApiModelProperty("纬度")
- private Double cwsLat;
- @ApiModelProperty("详细地址")
- private String cwsLoc;
- private String engType;
- private String wasuType;
- private String wasuRang;
- private Long desWasuScal;
- private Double desWasuPop;
- private String engStat;
- private String startDate;
- private String compDate;
- private String note;
- private String effDate;
- private String exprDate;
- private int status;
- @ApiModelProperty(value = "建成年份YYYY,农饮新需求添加,前端可传此参数")
- private String compYear;
- private String objId;
- @ApiModelProperty(value = "高德经度")
- private Double centerXGd;
- @ApiModelProperty(value = "高德纬度")
- private Double centerYGd;
- @Override
- public String getObjId() {
- return objId;
- }
- public Double getCenterXGd() {
- return centerXGd;
- }
- public void setCenterXGd(Double centerXGd) {
- this.centerXGd = centerXGd;
- }
- public Double getCenterYGd() {
- return centerYGd;
- }
- public void setCenterYGd(Double centerYGd) {
- this.centerYGd = centerYGd;
- }
- @Override
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getCompYear() {
- return compYear;
- }
- public void setCompYear(String compYear) {
- this.compYear = compYear;
- }
- public int getStatus() {
- return status;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public AttCwsBaseDto() {
- }
- public String getAddvcd() {
- return addvcd;
- }
- public void setAddvcd(String addvcd) {
- this.addvcd = addvcd;
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getCwsCode() {
- return cwsCode;
- }
- public void setCwsCode(String cwsCode) {
- this.cwsCode = cwsCode;
- }
- public String getCwsName() {
- return cwsName;
- }
- public void setCwsName(String cwsName) {
- this.cwsName = cwsName;
- }
- public Double getCwsLong() {
- return cwsLong;
- }
- public void setCwsLong(Double cwsLong) {
- this.cwsLong = cwsLong;
- }
- public Double getCwsLat() {
- return cwsLat;
- }
- public void setCwsLat(Double cwsLat) {
- this.cwsLat = cwsLat;
- }
- public String getCwsLoc() {
- return cwsLoc;
- }
- public void setCwsLoc(String cwsLoc) {
- this.cwsLoc = cwsLoc;
- }
- public String getEngType() {
- return engType;
- }
- public void setEngType(String engType) {
- this.engType = engType;
- }
- public String getWasuType() {
- return wasuType;
- }
- public void setWasuType(String wasuType) {
- this.wasuType = wasuType;
- }
- public String getWasuRang() {
- return wasuRang;
- }
- public void setWasuRang(String wasuRang) {
- this.wasuRang = wasuRang;
- }
- public Long getDesWasuScal() {
- return desWasuScal;
- }
- public void setDesWasuScal(Long desWasuScal) {
- this.desWasuScal = desWasuScal;
- }
- public Double getDesWasuPop() {
- return desWasuPop;
- }
- public void setDesWasuPop(Double desWasuPop) {
- this.desWasuPop = desWasuPop;
- }
- public String getEngStat() {
- return engStat;
- }
- public void setEngStat(String engStat) {
- this.engStat = engStat;
- }
- public String getStartDate() {
- return startDate;
- }
- public void setStartDate(String startDate) {
- this.startDate = startDate;
- }
- public String getCompDate() {
- return compDate;
- }
- public void setCompDate(String compDate) {
- this.compDate = compDate;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getEffDate() {
- return effDate;
- }
- public void setEffDate(String effDate) {
- this.effDate = effDate;
- }
- public String getExprDate() {
- return exprDate;
- }
- public void setExprDate(String exprDate) {
- this.exprDate = exprDate;
- }
- @Override
- public String toString() {
- return "AttCwsBase [" + "addvcd=" + addvcd + ", guid=" + guid + ", cwsCode=" + cwsCode + ", cwsName=" + cwsName + ", cwsLong=" + cwsLong + ", cwsLat=" + cwsLat + ", cwsLoc=" + cwsLoc + ", engType=" + engType + ", wasuType=" + wasuType + ", wasuRang=" + wasuRang + ", desWasuScal=" + desWasuScal + ", desWasuPop=" + desWasuPop + ", engStat=" + engStat + ", startDate=" + startDate + ", compDate=" + compDate + ", note=" + note + ", effDate=" + effDate + ", exprDate=" + exprDate + "]";
- }
- }
|