ReceiptContainerView.java
783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 containerCode;
/** 收货单明细ID */
Integer receiptDetailId;
/** 库位编码 */
String locationCode;
/** 库位编码 */
String sourceLocation;
/** guize */
String locatingRule;
/** 收货数量 */
BigDecimal qty;
/** 货主code */
String companyCode;
String materialCode;
String zoneCode;
/**出入口*/
private Integer port;
/**重量*/
private Double weight;
}