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:BisInspDvdwk * * @author lhc * @date 2019-4-30 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspDvdwk extends BaseBean implements Serializable { // 主键 @ApiModelProperty(value = "主键有默认值,不用传", name = "dvdwkId") private String dvdwkId; @ApiModelProperty(value = "督查通知ID", name = "schmId") private String schmId; @ApiModelProperty(value = "制作机构ID(暂时未用)", name = "guid") private String guid; // 机构id @ApiModelProperty(value = "机构id", name = "orgDp") private String orgDp; // 机构名称 @ApiModelProperty(value = "机构名称", name = "orgName") private String orgName; // 督查类型(1:小水库、2:农饮、3:水毁) @ApiModelProperty(value = "督查类型(1:小水库、2:农饮、3:水毁)", name = "dtype") private String dtype; // 内容 @ApiModelProperty(value = "内容", name = "content") private String content; // 录入时间 @ApiModelProperty(value = "录入时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 督查对象总数 @ApiModelProperty(value = "督查对象总数", name = "inspNum") private Double inspNum; // 行政区编码 @ApiModelProperty(value = "行政区编码", name = "adCode") private String adCode; // 行政区名称 @ApiModelProperty(value = "行政区名称", name = "adName") private String adName; // 基础数据总数 @ApiModelProperty(value = "基础数据总数", name = "inspCount") private Double inspCount; // 督查对象占比 @ApiModelProperty(value = "督查对象占比", name = "inspScale") private Double inspScale; public BisInspDvdwk() { } public String getDvdwkId() { return dvdwkId; } public void setDvdwkId(String dvdwkId) { this.dvdwkId = dvdwkId; } public String getSchmId() { return schmId; } public void setSchmId(String schmId) { this.schmId = schmId; } public String getGuid() { return guid; } public void setGuid(String guid) { this.guid = guid; } public String getOrgDp() { return orgDp; } public void setOrgDp(String orgDp) { this.orgDp = orgDp; } public String getDtype() { return dtype; } public void setDtype(String dtype) { this.dtype = dtype; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } 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 Double getInspNum() { return inspNum; } public void setInspNum(Double inspNum) { this.inspNum = inspNum; } 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 getOrgName() { return orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public Double getInspCount() { return inspCount; } public void setInspCount(Double inspCount) { this.inspCount = inspCount; } public Double getInspScale() { return inspScale; } public void setInspScale(Double inspScale) { this.inspScale = inspScale; } @Override public String toString() { return "BisInspDvdwk{" + "dvdwkId='" + dvdwkId + '\'' + ", schmId='" + schmId + '\'' + ", guid='" + guid + '\'' + ", orgDp='" + orgDp + '\'' + ", orgName='" + orgName + '\'' + ", dtype='" + dtype + '\'' + ", content='" + content + '\'' + ", intm=" + intm + ", uptm=" + uptm + ", inspNum=" + inspNum + ", adCode='" + adCode + '\'' + ", adName='" + adName + '\'' + ", inspCount=" + inspCount + ", inspScale=" + inspScale + '}'; } }