| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- 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;
- import java.util.Date;
- /**
- * @author lhc
- * @date 2019/11/25 17:52
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttScnsrBaseDto extends BaseBean implements Serializable {
- private String id;
- // 编码
- @ApiModelProperty(value="编码",name="code")
- private String code;
- // 名称
- @ApiModelProperty(value="名称",name="nm")
- private String nm;
- // 行政区编码
- @ApiModelProperty(value="行政区编码",name="adCode")
- private String adCode;
- // 行政区名称
- @ApiModelProperty(value="行政区名称",name="adName")
- private String adName;
- // 工程详细位置
- @ApiModelProperty(value="工程详细位置",name="location")
- private String location;
- // 类型
- @ApiModelProperty(value="类型",name="type")
- private String type;
- // 状态
- @ApiModelProperty(value="状态",name="state")
- private String state;
- // 批复文号
- @ApiModelProperty(value="批复文号",name="atNo")
- private String atNo;
- // 批复时间
- @ApiModelProperty(value="批复时间",name="atNoTm")
- private Date atNoTm;
- // 批复单位
- @ApiModelProperty(value="批复单位",name="atDep")
- private String atDep;
- // 所属行业
- @ApiModelProperty(value="所属行业",name="bus")
- private String bus;
- // 建设单位
- @ApiModelProperty(value="建设单位",name="budDep")
- private String budDep;
- // 项目联系人
- @ApiModelProperty(value="项目联系人",name="prjtPer")
- private String prjtPer;
- // 项目联系人联系方式
- @ApiModelProperty(value="项目联系人联系方式",name="prjtPerPh")
- private String prjtPerPh;
- // 方案编制单位
- @ApiModelProperty(value="方案编制单位",name="proDep")
- private String proDep;
- // 监测单位
- @ApiModelProperty(value="监测单位",name="detDep")
- private String detDep;
- // 监理单位
- @ApiModelProperty(value="监理单位",name="supDep")
- private String supDep;
- // 经度
- @ApiModelProperty(value="经度",name="centerX")
- private Double centerX;
- // 纬度
- @ApiModelProperty(value="纬度",name="centerY")
- private Double centerY;
- // 高德经度
- @ApiModelProperty(value="高德经度",name="gdX")
- private Double gdX;
- // 高德纬度
- @ApiModelProperty(value="高德纬度",name="gdY")
- private Double gdY;
- // 创建人
- @ApiModelProperty(value="创建人",name="persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value="修改时间",name="uptm")
- private Date uptm;
- public AttScnsrBaseDto() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getLocation() {
- return location;
- }
- public void setLocation(String location) {
- this.location = location;
- }
- public String getAtNo() {
- return atNo;
- }
- public void setAtNo(String atNo) {
- this.atNo = atNo;
- }
- public Date getAtNoTm() {
- return atNoTm;
- }
- public void setAtNoTm(Date atNoTm) {
- this.atNoTm = atNoTm;
- }
- public String getAtDep() {
- return atDep;
- }
- public void setAtDep(String atDep) {
- this.atDep = atDep;
- }
- public String getBus() {
- return bus;
- }
- public void setBus(String bus) {
- this.bus = bus;
- }
- public String getBudDep() {
- return budDep;
- }
- public void setBudDep(String budDep) {
- this.budDep = budDep;
- }
- public String getPrjtPer() {
- return prjtPer;
- }
- public void setPrjtPer(String prjtPer) {
- this.prjtPer = prjtPer;
- }
- public String getPrjtPerPh() {
- return prjtPerPh;
- }
- public void setPrjtPerPh(String prjtPerPh) {
- this.prjtPerPh = prjtPerPh;
- }
- public String getProDep() {
- return proDep;
- }
- public void setProDep(String proDep) {
- this.proDep = proDep;
- }
- public String getDetDep() {
- return detDep;
- }
- public void setDetDep(String detDep) {
- this.detDep = detDep;
- }
- public String getSupDep() {
- return supDep;
- }
- public void setSupDep(String supDep) {
- this.supDep = supDep;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- 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 getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- @Override
- public String toString() {
- return "AttScnsrBase [" + "id=" + id + ", code=" + code + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", location=" + location + ", atNo=" + atNo + ", atNoTm=" + atNoTm + ", atDep=" + atDep + ", bus=" + bus + ", budDep=" + budDep + ", prjtPer=" + prjtPer + ", prjtPerPh=" + prjtPerPh + ", proDep=" + proDep + ", detDep=" + detDep + ", supDep=" + supDep + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", type=" + type + ", state=" + state + "]";
- }
- }
|