自动化立体仓库 - WMS系统
zyx
2024-04-24 9d2d63ee09e8bcf494fc3fd14a48d82731fac9ef
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;
    }
}