ContainerItemDTO.java
package com.tradecloud.dto.api.shipment;
import com.tradecloud.schema.CurrencyType;
import com.tradecloud.schema.VolumeType;
import com.tradecloud.schema.WeightType;
import com.tradecloud.schema.logistics.Item;
//import com.tradecloud.schema.logistics.Item;
import java.math.BigDecimal;
public class ContainerItemDTO extends Item {
protected BigDecimal unitVolume;
protected BigDecimal unitWeight;
protected BigDecimal unitPerPackage;
protected BigDecimal numberOfPackages;
protected WeightType totalWeight;
protected VolumeType totalVolume;
protected CurrencyType supplyCost;
public BigDecimal getUnitVolume() {
return unitVolume;
}
public void setUnitVolume(BigDecimal unitVolume) {
this.unitVolume = unitVolume;
}
public BigDecimal getUnitWeight() {
return unitWeight;
}
public void setUnitWeight(BigDecimal unitWeight) {
this.unitWeight = unitWeight;
}
public BigDecimal getUnitPerPackage() {
return unitPerPackage;
}
public void setUnitPerPackage(BigDecimal unitPerPackage) {
this.unitPerPackage = unitPerPackage;
}
public WeightType getTotalWeightType() {
return totalWeight;
}
public void setTotalWeight(WeightType totalWeight) {
this.totalWeight = totalWeight;
}
public VolumeType getTotalVolumetype() {
return totalVolume;
}
public void setTotalVolume(VolumeType totalVolume) {
this.totalVolume = totalVolume;
}
public CurrencyType getSupplyCost() {
return supplyCost;
}
public void setSupplyCost(CurrencyType supplyCost) {
this.supplyCost = supplyCost;
}
public BigDecimal getNumberOfPackages() {
return numberOfPackages;
}
public void setNumberOfPackages(BigDecimal numberOfPackages) {
this.numberOfPackages = numberOfPackages;
}
}