package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import io.swagger.annotations.ApiModelProperty; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * entity:AttJskejianEcofrdRgstr * * @author lune * @date 2019-12-18 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class AttJskejianEcofrdRgstr extends BaseBean implements Serializable { @ApiModelProperty("主键ID") private String id; @ApiModelProperty("督查对象ID") private String objId; @ApiModelProperty("受理编号") private String accepNum; @ApiModelProperty("交办编号") private String assignNum; @ApiModelProperty("行政区编码") private String adCode; @ApiModelProperty("行政区名称") private String adName; @ApiModelProperty("所在详细位置") private String location; @ApiModelProperty("PC经度") private Double centerX; @ApiModelProperty("PC纬度") private Double centerY; @ApiModelProperty("高德经度") private Double gdX; @ApiModelProperty("高德纬度") private Double gdY; @ApiModelProperty("举报内容") private String reportContent; @ApiModelProperty("涉及业务") private String biz; @ApiModelProperty("主办单位") private String hostUnit; @ApiModelProperty("协办单位") private String sptUnit; @ApiModelProperty("调查核实情况") private String invstVfctn; @ApiModelProperty("处理和整改情况") private String trtmtRctftn; @ApiModelProperty("研判意见") private String opinion; @ApiModelProperty("初拟跟踪处室") private String office; @ApiModelProperty("是否办结(1:是;2:否)") private String isOver; @ApiModelProperty("核实情况(1:符合;2:不符合;)") private String reviConc; @ApiModelProperty("复查意见") private String reviOpin; @ApiModelProperty("创建人") private String persId; @ApiModelProperty("创建时间") private Date intm; @ApiModelProperty("修改时间") private Date uptm; @ApiModelProperty("督查状态(0:未复核;1:复核中;2:已复核)") private String state; @ApiModelProperty("督查组ID") private String groupId; @ApiModelProperty("省级标识") private String province; public AttJskejianEcofrdRgstr() { } public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public String getObjId() { return objId; } @Override public void setObjId(String objId) { this.objId = objId; } public String getAccepNum() { return accepNum; } public void setAccepNum(String accepNum) { this.accepNum = accepNum; } public String getAssignNum() { return assignNum; } public void setAssignNum(String assignNum) { this.assignNum = assignNum; } 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 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 getReportContent() { return reportContent; } public void setReportContent(String reportContent) { this.reportContent = reportContent; } public String getBiz() { return biz; } public void setBiz(String biz) { this.biz = biz; } public String getHostUnit() { return hostUnit; } public void setHostUnit(String hostUnit) { this.hostUnit = hostUnit; } public String getSptUnit() { return sptUnit; } public void setSptUnit(String sptUnit) { this.sptUnit = sptUnit; } public String getInvstVfctn() { return invstVfctn; } public void setInvstVfctn(String invstVfctn) { this.invstVfctn = invstVfctn; } public String getTrtmtRctftn() { return trtmtRctftn; } public void setTrtmtRctftn(String trtmtRctftn) { this.trtmtRctftn = trtmtRctftn; } public String getOpinion() { return opinion; } public void setOpinion(String opinion) { this.opinion = opinion; } public String getOffice() { return office; } public void setOffice(String office) { this.office = office; } public String getIsOver() { return isOver; } public void setIsOver(String isOver) { this.isOver = isOver; } public String getReviConc() { return reviConc; } public void setReviConc(String reviConc) { this.reviConc = reviConc; } public String getReviOpin() { return reviOpin; } public void setReviOpin(String reviOpin) { this.reviOpin = reviOpin; } 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 getState() { return state; } public void setState(String state) { this.state = state; } @Override public String getGroupId() { return groupId; } @Override public void setGroupId(String groupId) { this.groupId = groupId; } @Override public String getProvince() { return province; } @Override public void setProvince(String province) { this.province = province; } @Override public String toString() { return "AttJskejianEcofrdRgstr [" + "id=" + id + ", objId=" + objId + ", accepNum=" + accepNum + ", assignNum=" + assignNum + ", adCode=" + adCode + ", adName=" + adName + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", reportContent=" + reportContent + ", biz=" + biz + ", hostUnit=" + hostUnit + ", sptUnit=" + sptUnit + ", invstVfctn=" + invstVfctn + ", trtmtRctftn=" + trtmtRctftn + ", opinion=" + opinion + ", office=" + office + ", isOver=" + isOver + ", reviConc=" + reviConc + ", reviOpin=" + reviOpin + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", state=" + state + ", groupId=" + groupId + ", province=" + province + "]"; } }