ReceiptContainerView.java
701 Bytes
package com.huaheng.pc.receipt.receiptContainerHeader.domain;
import lombok.Data;
import java.math.BigDecimal;
/**
*
* @author Enzo Cotter
* @date 2019/12/30
*/
@Data
public class ReceiptContainerView {
/** 入库方式 */
Short taskType;
/** 入库单编码 */
String receiptCode;
/** 容器编码 */
String receiptContainerCode;
/** 收货单明细ID */
Integer receiptDetailId;
/** 库位编码 */
String locationCode;
/** 库位编码 */
String sourceLocation;
/** 收货数量 */
BigDecimal qty;
/** 货主code */
String companyCode;
/**出入口*/
private Integer port;
/**重量*/
private Double weight;
}