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
package com.vincent.rsf.openApi.entity.phyz;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@Accessors(chain = true)
@ApiModel(value = "InventorySummary", description = "库存汇总")
public class InventorySummary {
 
    // 仓库编码
    private String wareHouseId;
    // 仓库名称
    private String wareHouseName;
    // 物料编码
    private String matNr;
    // 物料名称
    private String makTx;
    // 规格
    private String spec;
    // 数量,小数点最长6位
    private Double anfme;
    // 单位
    private String unit;
    // 库存组织
    private String stockOrgId;
    // 批号
    private String batch;
    // 计划跟踪号
    private String planNo;
}