| | |
| | | @Data |
| | | @TableName("inventory_variance") |
| | | public class InventoryVariance { |
| | | //存货编码 |
| | | //商品编码 |
| | | private String matnr; |
| | | //销售订单号 |
| | | private String csocode; |
| | | //销售订单行号 |
| | | private String isoseq; |
| | | //ERP存货数量 |
| | | private Double iQuantity; |
| | | //立库存货数量 |
| | | //ERP商品数量 |
| | | private Double iquantity; |
| | | //立库商品数量 |
| | | private Double anfme; |
| | | |
| | | public InventoryVariance(String matnr, String csocode, String isoseq, Double iQuantity, 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.iquantity = iquantity; |
| | | this.anfme = anfme; |
| | | } |
| | | } |