| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacAttPawpBaseParam
- *
- * @author lune
- * @date 2019-6-19
- */
- public class TacAttPawpBaseParam extends PageParam 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("是否贫困县")
- private String isPoverty;
- @ApiModelProperty("行政区名称")
- private String adName;
- @ApiModelProperty("工程项目年度")
- private Long year;
- @ApiModelProperty("开工日期")
- private Date commencementDate;
- @ApiModelProperty("投资总额(万元)")
- private Double totalInvestment;
- @ApiModelProperty( "编辑对象调整原因")
- private String changeReson;
- public TacAttPawpBaseParam() {
- }
- 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;
- }
- 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;
- }
- }
|