package com.consum.model.po; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonIgnore; import com.walker.jdbc.BasePo; /** * 表名:DEP_FORM_LENDING_GOODS * * @author genrator */ @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY) public class DepFormLendingGoods extends BasePo { // 序列化版本号 private static final long serialVersionUID = 1L; // 主键 private Long id = null; @JsonIgnore protected boolean isset_id = false; // 属性列表 private String classification = null; @JsonIgnore protected boolean isset_classification = false; private Long baseGoodsTemplateId = null; @JsonIgnore protected boolean isset_baseGoodsTemplateId = false; private String baseGoodsTemplateName = null; @JsonIgnore protected boolean isset_baseGoodsTemplateName = false; private Long depFormLendingId = null; @JsonIgnore protected boolean isset_depFormLendingId = false; private String unit = null; @JsonIgnore protected boolean isset_unit = false; private Long baseGoodsModelsId = null; @JsonIgnore protected boolean isset_baseGoodsModelsId = false; private String baseGoodsModelsName = null; @JsonIgnore protected boolean isset_baseGoodsModelsName = false; private Integer counts = null; @JsonIgnore protected boolean isset_counts = false; private Long goodsUserPhone = null; @JsonIgnore protected boolean isset_goodsUserPhone = false; private String goodsUserName = null; @JsonIgnore protected boolean isset_goodsUserName = false; private Integer usingCount = null; @JsonIgnore protected boolean isset_usingCount = false; private Long warehouseId = null; @JsonIgnore protected boolean isset_warehouseId = false; private String warehouseName = null; @JsonIgnore protected boolean isset_warehouseName = false; /** * 默认构造函数 */ public DepFormLendingGoods() { } /** * 根据主键构造对象 */ public DepFormLendingGoods(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 getClassification() { return this.classification; } public void setClassification(String classification) { this.classification = classification; this.isset_classification = true; } @JsonIgnore public boolean isEmptyClassification() { return this.classification == null || this.classification.length() == 0; } public Long getBaseGoodsTemplateId() { return this.baseGoodsTemplateId; } public void setBaseGoodsTemplateId(Long baseGoodsTemplateId) { this.baseGoodsTemplateId = baseGoodsTemplateId; this.isset_baseGoodsTemplateId = true; } @JsonIgnore public boolean isEmptyBaseGoodsTemplateId() { return this.baseGoodsTemplateId == null; } public String getBaseGoodsTemplateName() { return this.baseGoodsTemplateName; } public void setBaseGoodsTemplateName(String baseGoodsTemplateName) { this.baseGoodsTemplateName = baseGoodsTemplateName; this.isset_baseGoodsTemplateName = true; } @JsonIgnore public boolean isEmptyBaseGoodsTemplateName() { return this.baseGoodsTemplateName == null || this.baseGoodsTemplateName.length() == 0; } public Long getDepFormLendingId() { return this.depFormLendingId; } public void setDepFormLendingId(Long depFormLendingId) { this.depFormLendingId = depFormLendingId; this.isset_depFormLendingId = true; } @JsonIgnore public boolean isEmptyDepFormLendingId() { return this.depFormLendingId == null; } public String getUnit() { return this.unit; } public void setUnit(String unit) { this.unit = unit; this.isset_unit = true; } @JsonIgnore public boolean isEmptyUnit() { return this.unit == null || this.unit.length() == 0; } public Long getBaseGoodsModelsId() { return this.baseGoodsModelsId; } public void setBaseGoodsModelsId(Long baseGoodsModelsId) { this.baseGoodsModelsId = baseGoodsModelsId; this.isset_baseGoodsModelsId = true; } @JsonIgnore public boolean isEmptyBaseGoodsModelsId() { return this.baseGoodsModelsId == null; } public String getBaseGoodsModelsName() { return this.baseGoodsModelsName; } public void setBaseGoodsModelsName(String baseGoodsModelsName) { this.baseGoodsModelsName = baseGoodsModelsName; this.isset_baseGoodsModelsName = true; } @JsonIgnore public boolean isEmptyBaseGoodsModelsName() { return this.baseGoodsModelsName == null || this.baseGoodsModelsName.length() == 0; } public Integer getCounts() { return this.counts; } public void setCounts(Integer counts) { this.counts = counts; this.isset_counts = true; } @JsonIgnore public boolean isEmptyCounts() { return this.counts == null; } public Long getGoodsUserPhone() { return this.goodsUserPhone; } public void setGoodsUserPhone(Long goodsUserPhone) { this.goodsUserPhone = goodsUserPhone; this.isset_goodsUserPhone = true; } @JsonIgnore public boolean isEmptyGoodsUserPhone() { return this.goodsUserPhone == null; } public String getGoodsUserName() { return this.goodsUserName; } public void setGoodsUserName(String goodsUserName) { this.goodsUserName = goodsUserName; this.isset_goodsUserName = true; } @JsonIgnore public boolean isEmptyGoodsUserName() { return this.goodsUserName == null || this.goodsUserName.length() == 0; } public Integer getUsingCount() { return this.usingCount; } public void setUsingCount(Integer usingCount) { this.usingCount = usingCount; this.isset_usingCount = true; } @JsonIgnore public boolean isEmptyUsingCount() { return this.usingCount == null; } 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("classification=").append(this.classification) .append("baseGoodsTemplateId=").append(this.baseGoodsTemplateId) .append("baseGoodsTemplateName=").append(this.baseGoodsTemplateName) .append("depFormLendingId=").append(this.depFormLendingId) .append("unit=").append(this.unit) .append("baseGoodsModelsId=").append(this.baseGoodsModelsId) .append("baseGoodsModelsName=").append(this.baseGoodsModelsName) .append("counts=").append(this.counts) .append("goodsUserPhone=").append(this.goodsUserPhone) .append("goodsUserName=").append(this.goodsUserName) .append("usingCount=").append(this.usingCount) .append("warehouseId=").append(this.warehouseId) .append("warehouseName=").append(this.warehouseName) .toString(); } /** * 克隆 */ public DepFormLendingGoods $clone() { DepFormLendingGoods dep_form_lending_goods = new DepFormLendingGoods(); // 数据库名称 //dep_form_lending_goods.setDatabaseName_(this.getDatabaseName_()); // 主键 if (this.isset_id) { dep_form_lending_goods.setId(this.getId()); } // 普通属性 if (this.isset_classification) { dep_form_lending_goods.setClassification(this.getClassification()); } if (this.isset_baseGoodsTemplateId) { dep_form_lending_goods.setBaseGoodsTemplateId(this.getBaseGoodsTemplateId()); } if (this.isset_baseGoodsTemplateName) { dep_form_lending_goods.setBaseGoodsTemplateName(this.getBaseGoodsTemplateName()); } if (this.isset_depFormLendingId) { dep_form_lending_goods.setDepFormLendingId(this.getDepFormLendingId()); } if (this.isset_unit) { dep_form_lending_goods.setUnit(this.getUnit()); } if (this.isset_baseGoodsModelsId) { dep_form_lending_goods.setBaseGoodsModelsId(this.getBaseGoodsModelsId()); } if (this.isset_baseGoodsModelsName) { dep_form_lending_goods.setBaseGoodsModelsName(this.getBaseGoodsModelsName()); } if (this.isset_counts) { dep_form_lending_goods.setCounts(this.getCounts()); } if (this.isset_goodsUserPhone) { dep_form_lending_goods.setGoodsUserPhone(this.getGoodsUserPhone()); } if (this.isset_goodsUserName) { dep_form_lending_goods.setGoodsUserName(this.getGoodsUserName()); } if (this.isset_usingCount) { dep_form_lending_goods.setUsingCount(this.getUsingCount()); } if (this.isset_warehouseId) { dep_form_lending_goods.setWarehouseId(this.getWarehouseId()); } if (this.isset_warehouseName) { dep_form_lending_goods.setWarehouseName(this.getWarehouseName()); } return dep_form_lending_goods; } }