ReceiptSituation.java
584 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
41
42
package com.huaheng.api.tv.domain;
import lombok.Data;
/**
* 入库情况实体类
* @author xcq
*/
@Data
public class ReceiptSituation {
/**
* 生产订单
*/
private String orderCode;
/**
* 入库库位
*/
private String toLocation;
/**
* 站台
*/
private String port;
/**
* 时间
*/
private String time;
/**
* 物料编码
*/
private String materialCode;
/**
* 物料名称
*/
private String materialName;
/**
* 数量
*/
private Integer qty;
}