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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.vincent.rsf.openApi.entity.phyz;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
import javax.validation.constraints.NotNull;
 
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@Accessors(chain = true)
@ApiModel(value = "OrderItem", description = "入/出库通知单明细")
public class OrderItem {
 
    // 计划跟踪号
    @NotNull
    @JsonProperty("planNo")
    private String planNo;
    // 行内码,唯一标识
    @JsonProperty("lineId")
    private String lineId;
    // 物料编码,唯一标识
    @NotNull
    @JsonProperty("matNr")
    private String matNr;
    // 物料名称
    @JsonProperty("makTx")
    private String makTx;
    // 规格
    private String spec;
    // 型号
    private String model;
    // 数量
    private Double anfme;
    // 批号
    private String batch;
    // 单位
    private String unit;
    // 基本单位
    private String baseUnitId;
    // 计价单位
    private String priceUnitId;
    // 建议目标仓库
    private String palletId;
    // 调出仓
    private String targetWareHouseId;
    // 业务日期,对账使用,时间戳,精确到秒
    private String sourceWareHouseId;
    // 入库类型
    private String inStockType;
    // 货主类型
    private String ownerTypeId;
    // 货主
    private String ownerId;
    // 货主名称
    private String ownerName;
    // 保管者类型
    private String keeperTypeId;
    // 保管者
    private String keeperId;
    // 保管者名称
    private String keeperName;
}