package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * entity:TacAttPawpBase * * @author lune * @date 2019-6-19 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class TacAttPawpBase extends BaseBean implements Serializable { @ApiModelProperty("主键id") private String id; @ApiModelProperty("项目名称") private String name; @ApiModelProperty("项目类型") private String type; @ApiModelProperty("所属流域机构") private String admOrg; @ApiModelProperty("行政区编码") private String adCode; @ApiModelProperty("工程详细位置") private String location; @ApiModelProperty("经度") private Double centerX; @ApiModelProperty("纬度") private Double centerY; @ApiModelProperty("高德经度") private Double gdX; @ApiModelProperty("高德纬度") private Double gdY; @ApiModelProperty("创建人") private String persId; @ApiModelProperty("创建时间") private Date intm; /* @ApiModelProperty("修改时间") */ //修改时间 private Date uptm; @ApiModelProperty("对象id") private String objId; @ApiModelProperty("是否贫困县") private String isPoverty; @ApiModelProperty("行政区名称") private String adName; @ApiModelProperty("年度") private Long year; @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @ApiModelProperty("开工日期") private Date commencementDate; @ApiModelProperty("投资总额(万元)") private Double totalInvestment; /* @ApiModelProperty( "编辑对象调整原因") */ //修改时间 @ApiModelProperty("工程规模(大型、中型、小型)-湖北") private String scale; @ApiModelProperty("工程类型(水利工程通用、水库大坝工程、水电站工程、泵站工程、水闸工程、堤防工程、引调水及灌区工程、其他水利工程)-湖北") private String ptype; @ApiModelProperty("工程类别(新建、扩建、改建、加固、修复)-湖北") private String cate; @ApiModelProperty("工程阶段(刚开工、未达施工高峰、施工高峰、接近完工、已完工)-湖北") private String stage; private String changeReson; public TacAttPawpBase() { } public String getChangeReson() { return changeReson; } public void setChangeReson(String changeReson) { this.changeReson = changeReson; } public Long getYear() { return year; } public void setYear(Long year) { this.year = year; } public Date getCommencementDate() { return commencementDate; } public void setCommencementDate(Date commencementDate) { this.commencementDate = commencementDate; } public Double getTotalInvestment() { return totalInvestment; } public void setTotalInvestment(Double totalInvestment) { this.totalInvestment = totalInvestment; } public String getIsPoverty() { return isPoverty; } public void setIsPoverty(String isPoverty) { this.isPoverty = isPoverty; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } @Override public String getObjId() { return objId; } @Override public void setObjId(String objId) { this.objId = objId; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getAdmOrg() { return admOrg; } public void setAdmOrg(String admOrg) { this.admOrg = admOrg; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } 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; } @Override public String toString() { return "TacAttPawpBase [" + "id=" + id + ", name=" + name + ", type=" + type + ", admOrg=" + admOrg + ", adCode=" + adCode + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]"; } public String getScale() { return scale; } public void setScale(String scale) { this.scale = scale; } public String getPtype() { return ptype; } public void setPtype(String ptype) { this.ptype = ptype; } public String getCate() { return cate; } public void setCate(String cate) { this.cate = cate; } public String getStage() { return stage; } public void setStage(String stage) { this.stage = stage; } }