package com.huaheng.pc.shipment.shipmentContainerHeader.domain; import java.math.BigDecimal; /** * 用于出库组盘,前端给后端传递数据 */ public class ShipmentCombinationModel { //组盘时的出库明细Id private int shipmentDetailId; //组盘时选择的库存 private int inventoryDetailId; //组盘数量 private BigDecimal shipQty; //组盘类型 private Short type; //是否自动生成任务 private boolean auto=false; //自动生成时,选择的任务类型 private int taskType; /** 货主code */ private String companyCode; public int getTaskType() { return taskType; } public void setTaskType(int taskType) { this.taskType = taskType; } public int getShipmentDetailId() { return shipmentDetailId; } public void setShipmentDetailId(int shipmentDetailId) { this.shipmentDetailId = shipmentDetailId; } public Short getType() { return type; } public void setType(Short type) { this.type = type; } public boolean isAuto() { return auto; } public void setAuto(boolean auto) { this.auto = auto; } public String getCompanyCode() { return companyCode; } public void setCompanyCode(String companyCode) { this.companyCode = companyCode; } public int getInventoryDetailId() { return inventoryDetailId; } public void setInventoryDetailId(int inventoryDetailId) { this.inventoryDetailId = inventoryDetailId; } public BigDecimal getShipQty() { return shipQty; } public void setShipQty(BigDecimal shipQty) { this.shipQty = shipQty; } }