DutyDrawBackItemLinkDTO.java
package com.tradecloud.dto.external;
import java.math.BigDecimal;
public class DutyDrawBackItemLinkDTO {
private Long dutyDrawbackItemId;
private Long exportItemId;
private String exportReference;
private BigDecimal amountLinked;
private BigDecimal amountToLink;
private String exportShipmentRef;
private String exportCartonNumber;
private Long supplierId;
private String countryCode;
private BigDecimal exportedQuantity;//export item quantity
public Long getDutyDrawbackItemId() {
return dutyDrawbackItemId;
}
public void setDutyDrawbackItemId(Long dutyDrawbackItemId) {
this.dutyDrawbackItemId = dutyDrawbackItemId;
}
public Long getExportItemId() {
return exportItemId;
}
public void setExportItemId(Long exportItemId) {
this.exportItemId = exportItemId;
}
public BigDecimal getAmountLinked() {
return amountLinked;
}
public void setAmountLinked(BigDecimal amountLinked) {
this.amountLinked = amountLinked;
}
public String getExportShipmentRef() {
return exportShipmentRef;
}
public void setExportShipmentRef(String exportShipmentRef) {
this.exportShipmentRef = exportShipmentRef;
}
public String getExportCartonNumber() {
return exportCartonNumber;
}
public void setExportCartonNumber(String exportCartonNumber) {
this.exportCartonNumber = exportCartonNumber;
}
public Long getSupplierId() {
return supplierId;
}
public void setSupplierId(Long supplierId) {
this.supplierId = supplierId;
}
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public BigDecimal getExportedQuantity() {
return exportedQuantity;
}
public void setExportedQuantity(BigDecimal exportedQuantity) {
this.exportedQuantity = exportedQuantity;
}
public BigDecimal getAmountToLink() {
return amountToLink;
}
public void setAmountToLink(BigDecimal amountToLink) {
this.amountToLink = amountToLink;
}
public String getExportReference() {
return exportReference;
}
public void setExportReference(String exportReference) {
this.exportReference = exportReference;
}
}