| package com.jsh.erp.datasource.entities; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| public class DepotItem { | 
|     private Long id; | 
|   | 
|     private Long headerId; | 
|   | 
|     private Long materialId; | 
|   | 
|     private Long materialExtendId; | 
|   | 
|     private String materialUnit; | 
|   | 
|     private String sku; | 
|   | 
|     private BigDecimal operNumber; | 
|   | 
|     private BigDecimal basicNumber; | 
|   | 
|     private BigDecimal unitPrice; | 
|   | 
|     private BigDecimal purchaseUnitPrice; | 
|   | 
|     private BigDecimal taxUnitPrice; | 
|   | 
|     private BigDecimal allPrice; | 
|   | 
|     private String remark; | 
|   | 
|     private Long depotId; | 
|   | 
|     private Long anotherDepotId; | 
|   | 
|     private BigDecimal taxRate; | 
|   | 
|     private BigDecimal taxMoney; | 
|   | 
|     private BigDecimal taxLastMoney; | 
|   | 
|     private String materialType; | 
|   | 
|     private String snList; | 
|   | 
|     private String batchNumber; | 
|   | 
|     private Date expirationDate; | 
|   | 
|     private Long linkId; | 
|   | 
|     private Long tenantId; | 
|   | 
|     private String deleteFlag; | 
|   | 
|     public Long getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(Long id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public Long getHeaderId() { | 
|         return headerId; | 
|     } | 
|   | 
|     public void setHeaderId(Long headerId) { | 
|         this.headerId = headerId; | 
|     } | 
|   | 
|     public Long getMaterialId() { | 
|         return materialId; | 
|     } | 
|   | 
|     public void setMaterialId(Long materialId) { | 
|         this.materialId = materialId; | 
|     } | 
|   | 
|     public Long getMaterialExtendId() { | 
|         return materialExtendId; | 
|     } | 
|   | 
|     public void setMaterialExtendId(Long materialExtendId) { | 
|         this.materialExtendId = materialExtendId; | 
|     } | 
|   | 
|     public String getMaterialUnit() { | 
|         return materialUnit; | 
|     } | 
|   | 
|     public void setMaterialUnit(String materialUnit) { | 
|         this.materialUnit = materialUnit == null ? null : materialUnit.trim(); | 
|     } | 
|   | 
|     public String getSku() { | 
|         return sku; | 
|     } | 
|   | 
|     public void setSku(String sku) { | 
|         this.sku = sku == null ? null : sku.trim(); | 
|     } | 
|   | 
|     public BigDecimal getOperNumber() { | 
|         return operNumber; | 
|     } | 
|   | 
|     public void setOperNumber(BigDecimal operNumber) { | 
|         this.operNumber = operNumber; | 
|     } | 
|   | 
|     public BigDecimal getBasicNumber() { | 
|         return basicNumber; | 
|     } | 
|   | 
|     public void setBasicNumber(BigDecimal basicNumber) { | 
|         this.basicNumber = basicNumber; | 
|     } | 
|   | 
|     public BigDecimal getUnitPrice() { | 
|         return unitPrice; | 
|     } | 
|   | 
|     public void setUnitPrice(BigDecimal unitPrice) { | 
|         this.unitPrice = unitPrice; | 
|     } | 
|   | 
|     public BigDecimal getPurchaseUnitPrice() { | 
|         return purchaseUnitPrice; | 
|     } | 
|   | 
|     public void setPurchaseUnitPrice(BigDecimal purchaseUnitPrice) { | 
|         this.purchaseUnitPrice = purchaseUnitPrice; | 
|     } | 
|   | 
|     public BigDecimal getTaxUnitPrice() { | 
|         return taxUnitPrice; | 
|     } | 
|   | 
|     public void setTaxUnitPrice(BigDecimal taxUnitPrice) { | 
|         this.taxUnitPrice = taxUnitPrice; | 
|     } | 
|   | 
|     public BigDecimal getAllPrice() { | 
|         return allPrice; | 
|     } | 
|   | 
|     public void setAllPrice(BigDecimal allPrice) { | 
|         this.allPrice = allPrice; | 
|     } | 
|   | 
|     public String getRemark() { | 
|         return remark; | 
|     } | 
|   | 
|     public void setRemark(String remark) { | 
|         this.remark = remark == null ? null : remark.trim(); | 
|     } | 
|   | 
|     public Long getDepotId() { | 
|         return depotId; | 
|     } | 
|   | 
|     public void setDepotId(Long depotId) { | 
|         this.depotId = depotId; | 
|     } | 
|   | 
|     public Long getAnotherDepotId() { | 
|         return anotherDepotId; | 
|     } | 
|   | 
|     public void setAnotherDepotId(Long anotherDepotId) { | 
|         this.anotherDepotId = anotherDepotId; | 
|     } | 
|   | 
|     public BigDecimal getTaxRate() { | 
|         return taxRate; | 
|     } | 
|   | 
|     public void setTaxRate(BigDecimal taxRate) { | 
|         this.taxRate = taxRate; | 
|     } | 
|   | 
|     public BigDecimal getTaxMoney() { | 
|         return taxMoney; | 
|     } | 
|   | 
|     public void setTaxMoney(BigDecimal taxMoney) { | 
|         this.taxMoney = taxMoney; | 
|     } | 
|   | 
|     public BigDecimal getTaxLastMoney() { | 
|         return taxLastMoney; | 
|     } | 
|   | 
|     public void setTaxLastMoney(BigDecimal taxLastMoney) { | 
|         this.taxLastMoney = taxLastMoney; | 
|     } | 
|   | 
|     public String getMaterialType() { | 
|         return materialType; | 
|     } | 
|   | 
|     public void setMaterialType(String materialType) { | 
|         this.materialType = materialType == null ? null : materialType.trim(); | 
|     } | 
|   | 
|     public String getSnList() { | 
|         return snList; | 
|     } | 
|   | 
|     public void setSnList(String snList) { | 
|         this.snList = snList == null ? null : snList.trim(); | 
|     } | 
|   | 
|     public String getBatchNumber() { | 
|         return batchNumber; | 
|     } | 
|   | 
|     public void setBatchNumber(String batchNumber) { | 
|         this.batchNumber = batchNumber == null ? null : batchNumber.trim(); | 
|     } | 
|   | 
|     public Date getExpirationDate() { | 
|         return expirationDate; | 
|     } | 
|   | 
|     public void setExpirationDate(Date expirationDate) { | 
|         this.expirationDate = expirationDate; | 
|     } | 
|   | 
|     public Long getLinkId() { | 
|         return linkId; | 
|     } | 
|   | 
|     public void setLinkId(Long linkId) { | 
|         this.linkId = linkId; | 
|     } | 
|   | 
|     public Long getTenantId() { | 
|         return tenantId; | 
|     } | 
|   | 
|     public void setTenantId(Long tenantId) { | 
|         this.tenantId = tenantId; | 
|     } | 
|   | 
|     public String getDeleteFlag() { | 
|         return deleteFlag; | 
|     } | 
|   | 
|     public void setDeleteFlag(String deleteFlag) { | 
|         this.deleteFlag = deleteFlag == null ? null : deleteFlag.trim(); | 
|     } | 
| } |