自动化立体仓库 - WMS系统
tzsk
2024-02-07 97c6a268766387d9c6834c23c9da3fdf63f3dc3f
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
 
/**
 * ERP - 立库 库存差异统计表
 */
@Data
@TableName("inventory_variance")
public class InventoryVariance {
    //存货编码
    private String matnr;
    //销售订单号
    private String csocode;
    //销售订单行号
    private String isoseq;
    //ERP存货数量
    private Double iquantity;
    //立库存货数量
    private Double anfme;
 
    public InventoryVariance(String matnr, String csocode, String isoseq, Double iquantity, Double anfme){
        this.matnr = matnr;
        this.csocode = csocode;
        this.isoseq = isoseq;
        this.iquantity = iquantity;
        this.anfme = anfme;
    }
}