| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:AttFundBase
- *
- * @author lisen
- * @date 2021-6-19
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class AttFundBase extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value="主键ID",name="id")
- private String id;
- // bis_insp_all_obj表OBJ_ID
- @ApiModelProperty(value="bis_insp_all_obj表OBJ_ID",name="projCode")
- private String projCode;
- // 项目名称
- @ApiModelProperty(value="项目名称",name="projName")
- private String projName;
- // 行政区划编码
- @ApiModelProperty(value="行政区划编码",name="adCode")
- private String adCode;
- // 行政区划名称
- @ApiModelProperty(value="行政区划名称",name="adName")
- private String adName;
- // 建设单位
- @ApiModelProperty(value="建设单位",name="constractUnit")
- private String constractUnit;
- // 项目类型
- @ApiModelProperty(value="项目类型",name="projType")
- private String projType;
- // 预算年份
- @ApiModelProperty(value="预算年份",name="planYear")
- private String planYear;
- // 计划安排资金(万元)
- @ApiModelProperty(value="计划安排资金(万元)",name="planFunds")
- private Double planFunds;
- // 备注
- @ApiModelProperty(value="备注",name="remarks")
- private String remarks;
- // 经度
- @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;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
- private String dataStat;
- public AttFundBase() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getProjCode() {
- return projCode;
- }
- public void setProjCode(String projCode) {
- this.projCode = projCode;
- }
- public String getProjName() {
- return projName;
- }
- public void setProjName(String projName) {
- this.projName = projName;
- }
- 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 getConstractUnit() {
- return constractUnit;
- }
- public void setConstractUnit(String constractUnit) {
- this.constractUnit = constractUnit;
- }
- public String getProjType() {
- return projType;
- }
- public void setProjType(String projType) {
- this.projType = projType;
- }
- public String getPlanYear() {
- return planYear;
- }
- public void setPlanYear(String planYear) {
- this.planYear = planYear;
- }
- public Double getPlanFunds() {
- return planFunds;
- }
- public void setPlanFunds(Double planFunds) {
- this.planFunds = planFunds;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "AttFundBase [" + "id=" + id + ", projCode=" + projCode + ", projName=" + projName + ", adCode=" + adCode + ", adName=" + adName + ", constractUnit=" + constractUnit + ", projType=" + projType + ", planYear=" + planYear + ", planFunds=" + planFunds + ", remarks=" + remarks + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|