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; } }