package com.consum.model.po; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonIgnore; import com.walker.jdbc.BasePo; /** * 表名:DEP_FORM_SCRAPPED * * @author genrator */ @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY) public class DepFormScrapped extends BasePo { // 序列化版本号 private static final long serialVersionUID = 1L; // 主键 private Long id = null; @JsonIgnore protected boolean isset_id = false; // 属性列表 private String businessFormCode = null; @JsonIgnore protected boolean isset_businessFormCode = false; private Long agencyId = null; @JsonIgnore protected boolean isset_agencyId = false; private String agencyName = null; @JsonIgnore protected boolean isset_agencyName = false; private Long operatorId = null; @JsonIgnore protected boolean isset_operatorId = false; private String operatorName = null; @JsonIgnore protected boolean isset_operatorName = false; private Long dealTime = null; @JsonIgnore protected boolean isset_dealTime = false; private String departmentId = null; @JsonIgnore protected boolean isset_departmentId = false; private Long departmentName = null; @JsonIgnore protected boolean isset_departmentName = false; private Long reviewerId = null; @JsonIgnore protected boolean isset_reviewerId = false; private String reviewerName = null; @JsonIgnore protected boolean isset_reviewerName = false; private Long reviewDate = null; @JsonIgnore protected boolean isset_reviewDate = false; private Integer reviewStates = null; @JsonIgnore protected boolean isset_reviewStates = false; private String beiz = null; @JsonIgnore protected boolean isset_beiz = false; private String beiz2 = null; @JsonIgnore protected boolean isset_beiz2 = false; private String uploadFiles = null; @JsonIgnore protected boolean isset_uploadFiles = false; private Long warehouseId = null; @JsonIgnore protected boolean isset_warehouseId = false; private String warehouseName = null; @JsonIgnore protected boolean isset_warehouseName = false; /** * 默认构造函数 */ public DepFormScrapped() { } /** * 根据主键构造对象 */ public DepFormScrapped(Long id) { this.setId(id); } /** * 设置主键值 */ @Override public void setPkValue(Object value) { this.setId((Long) value); } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; this.isset_id = true; } @JsonIgnore public boolean isEmptyId() { return this.id == null; } public String getBusinessFormCode() { return this.businessFormCode; } public void setBusinessFormCode(String businessFormCode) { this.businessFormCode = businessFormCode; this.isset_businessFormCode = true; } @JsonIgnore public boolean isEmptyBusinessFormCode() { return this.businessFormCode == null || this.businessFormCode.length() == 0; } public Long getAgencyId() { return this.agencyId; } public void setAgencyId(Long agencyId) { this.agencyId = agencyId; this.isset_agencyId = true; } @JsonIgnore public boolean isEmptyAgencyId() { return this.agencyId == null; } public String getAgencyName() { return this.agencyName; } public void setAgencyName(String agencyName) { this.agencyName = agencyName; this.isset_agencyName = true; } @JsonIgnore public boolean isEmptyAgencyName() { return this.agencyName == null || this.agencyName.length() == 0; } public Long getOperatorId() { return this.operatorId; } public void setOperatorId(Long operatorId) { this.operatorId = operatorId; this.isset_operatorId = true; } @JsonIgnore public boolean isEmptyOperatorId() { return this.operatorId == null; } public String getOperatorName() { return this.operatorName; } public void setOperatorName(String operatorName) { this.operatorName = operatorName; this.isset_operatorName = true; } @JsonIgnore public boolean isEmptyOperatorName() { return this.operatorName == null || this.operatorName.length() == 0; } public Long getDealTime() { return this.dealTime; } public void setDealTime(Long dealTime) { this.dealTime = dealTime; this.isset_dealTime = true; } @JsonIgnore public boolean isEmptyDealTime() { return this.dealTime == null; } public String getDepartmentId() { return this.departmentId; } public void setDepartmentId(String departmentId) { this.departmentId = departmentId; this.isset_departmentId = true; } @JsonIgnore public boolean isEmptyDepartmentId() { return this.departmentId == null || this.departmentId.length() == 0; } public Long getDepartmentName() { return this.departmentName; } public void setDepartmentName(Long departmentName) { this.departmentName = departmentName; this.isset_departmentName = true; } @JsonIgnore public boolean isEmptyDepartmentName() { return this.departmentName == null; } public Long getReviewerId() { return this.reviewerId; } public void setReviewerId(Long reviewerId) { this.reviewerId = reviewerId; this.isset_reviewerId = true; } @JsonIgnore public boolean isEmptyReviewerId() { return this.reviewerId == null; } public String getReviewerName() { return this.reviewerName; } public void setReviewerName(String reviewerName) { this.reviewerName = reviewerName; this.isset_reviewerName = true; } @JsonIgnore public boolean isEmptyReviewerName() { return this.reviewerName == null || this.reviewerName.length() == 0; } public Long getReviewDate() { return this.reviewDate; } public void setReviewDate(Long reviewDate) { this.reviewDate = reviewDate; this.isset_reviewDate = true; } @JsonIgnore public boolean isEmptyReviewDate() { return this.reviewDate == null; } public Integer getReviewStates() { return this.reviewStates; } public void setReviewStates(Integer reviewStates) { this.reviewStates = reviewStates; this.isset_reviewStates = true; } @JsonIgnore public boolean isEmptyReviewStates() { return this.reviewStates == null; } public String getBeiz() { return this.beiz; } public void setBeiz(String beiz) { this.beiz = beiz; this.isset_beiz = true; } @JsonIgnore public boolean isEmptyBeiz() { return this.beiz == null || this.beiz.length() == 0; } public String getBeiz2() { return this.beiz2; } public void setBeiz2(String beiz2) { this.beiz2 = beiz2; this.isset_beiz2 = true; } @JsonIgnore public boolean isEmptyBeiz2() { return this.beiz2 == null || this.beiz2.length() == 0; } public String getUploadFiles() { return this.uploadFiles; } public void setUploadFiles(String uploadFiles) { this.uploadFiles = uploadFiles; this.isset_uploadFiles = true; } @JsonIgnore public boolean isEmptyUploadFiles() { return this.uploadFiles == null || this.uploadFiles.length() == 0; } public Long getWarehouseId() { return this.warehouseId; } public void setWarehouseId(Long warehouseId) { this.warehouseId = warehouseId; this.isset_warehouseId = true; } @JsonIgnore public boolean isEmptyWarehouseId() { return this.warehouseId == null; } public String getWarehouseName() { return this.warehouseName; } public void setWarehouseName(String warehouseName) { this.warehouseName = warehouseName; this.isset_warehouseName = true; } @JsonIgnore public boolean isEmptyWarehouseName() { return this.warehouseName == null || this.warehouseName.length() == 0; } /** * 重写 toString() 方法 */ @Override public String toString() { return new StringBuilder() .append("id=").append(this.id) .append("businessFormCode=").append(this.businessFormCode) .append("agencyId=").append(this.agencyId) .append("agencyName=").append(this.agencyName) .append("operatorId=").append(this.operatorId) .append("operatorName=").append(this.operatorName) .append("dealTime=").append(this.dealTime) .append("departmentId=").append(this.departmentId) .append("departmentName=").append(this.departmentName) .append("reviewerId=").append(this.reviewerId) .append("reviewerName=").append(this.reviewerName) .append("reviewDate=").append(this.reviewDate) .append("reviewStates=").append(this.reviewStates) .append("beiz=").append(this.beiz) .append("beiz2=").append(this.beiz2) .append("uploadFiles=").append(this.uploadFiles) .append("warehouseId=").append(this.warehouseId) .append("warehouseName=").append(this.warehouseName) .toString(); } /** * 克隆 */ public DepFormScrapped $clone() { DepFormScrapped dep_form_scrapped = new DepFormScrapped(); // 数据库名称 //dep_form_scrapped.setDatabaseName_(this.getDatabaseName_()); // 主键 if (this.isset_id) { dep_form_scrapped.setId(this.getId()); } // 普通属性 if (this.isset_businessFormCode) { dep_form_scrapped.setBusinessFormCode(this.getBusinessFormCode()); } if (this.isset_agencyId) { dep_form_scrapped.setAgencyId(this.getAgencyId()); } if (this.isset_agencyName) { dep_form_scrapped.setAgencyName(this.getAgencyName()); } if (this.isset_operatorId) { dep_form_scrapped.setOperatorId(this.getOperatorId()); } if (this.isset_operatorName) { dep_form_scrapped.setOperatorName(this.getOperatorName()); } if (this.isset_dealTime) { dep_form_scrapped.setDealTime(this.getDealTime()); } if (this.isset_departmentId) { dep_form_scrapped.setDepartmentId(this.getDepartmentId()); } if (this.isset_departmentName) { dep_form_scrapped.setDepartmentName(this.getDepartmentName()); } if (this.isset_reviewerId) { dep_form_scrapped.setReviewerId(this.getReviewerId()); } if (this.isset_reviewerName) { dep_form_scrapped.setReviewerName(this.getReviewerName()); } if (this.isset_reviewDate) { dep_form_scrapped.setReviewDate(this.getReviewDate()); } if (this.isset_reviewStates) { dep_form_scrapped.setReviewStates(this.getReviewStates()); } if (this.isset_beiz) { dep_form_scrapped.setBeiz(this.getBeiz()); } if (this.isset_beiz2) { dep_form_scrapped.setBeiz2(this.getBeiz2()); } if (this.isset_uploadFiles) { dep_form_scrapped.setUploadFiles(this.getUploadFiles()); } if (this.isset_warehouseId) { dep_form_scrapped.setWarehouseId(this.getWarehouseId()); } if (this.isset_warehouseName) { dep_form_scrapped.setWarehouseName(this.getWarehouseName()); } return dep_form_scrapped; } }