zouyu
2026-05-09 e9e88eefcc8abd2b1e187d28c7666e80307e97cc
basic-server/src/main/java/com/ruoyi/basic/pojo/IfsInventoryQuantity.java
@@ -18,15 +18,20 @@
@ExcelIgnoreUnannotated
public class IfsInventoryQuantity  implements Serializable {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Long id;
    @ApiModelProperty("域")
    private String contract;
    @ExcelProperty(index = 13, value = "订单号")
    @ExcelProperty(index = 12, value = "订单号")
    @ApiModelProperty("订单号")
    private String orderNo;
    @ApiModelProperty("订单类型(01raw:原材料,02wg:外购成品)")
    private String orderType;
    @ApiModelProperty("物料属性,用于区分铜、铝导体等零件")
    private String materialProp;
    @ApiModelProperty("行号")
    private String lineNo;
@@ -37,11 +42,11 @@
    @ApiModelProperty("接收号")
    private Integer receiptNo;
    @ExcelProperty(index = 3, value = "零件号")
    @ExcelProperty(index = 2, value = "零件号")
    @ApiModelProperty("零件号")
    private String partNo;
    @ExcelProperty(index = 4, value = "零件描述")
    @ExcelProperty(index = 3, value = "零件描述")
    @ApiModelProperty("零件描述")
    private String partDesc;
@@ -51,7 +56,7 @@
    @ApiModelProperty("状态(IFS原本拉取的状态)")
    private String statusDb;
    @ExcelProperty(index = 11, value = "抵达的采购数量")
    @ExcelProperty(index = 10, value = "抵达的采购数量")
    @ApiModelProperty("抵达的采购数量")
    private BigDecimal qtyArrived;
@@ -64,7 +69,7 @@
    @ApiModelProperty("供应商编号")
    private String supplierId;
    @ExcelProperty(index = 5, value = "供应商名称")
    @ExcelProperty(index = 4, value = "供应商名称")
    @ApiModelProperty("供应商名称")
    private String supplierName;
@@ -137,7 +142,7 @@
    @ApiModelProperty("采购订单行备注")
    private String lineRemarks;
    @ExcelProperty(index = 12, value = "单位")
    @ExcelProperty(index = 11, value = "单位")
    @ApiModelProperty("单位")
    private String buyUnitMeas;
@@ -184,7 +189,7 @@
    private Integer isQuarter;
    // 修改后的
    @ExcelProperty(index = 1, value = "批号")
    @ExcelProperty(index = 0, value = "批号")
    @ApiModelProperty("批号")
    private String updateBatchNo;
@@ -207,4 +212,7 @@
    // 是否是过期材料: 0否, 1:是"
    @ApiModelProperty("物料类型")
    private Integer isExpire;
    @ApiModelProperty("是否为拆分订单(1:是,0:否)")
    private Integer isSplitOrder;
}