liyong
2026-05-15 0578c6c76f13e367b5dc7d0882efe3c69ca4cb0e
src/main/java/com/ruoyi/stock/pojo/StockOutRecord.java
@@ -31,19 +31,19 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @Schema(description = "入库批次")
    @Schema(description = "出库批次")
    private String outboundBatches;
    @Schema(description = "批号")
    private String batchNo;
    @Schema(description = "入库数量")
    @Schema(description = "出库数量")
    private BigDecimal stockOutNum;
    @Schema(description = "入库来源id")
    @Schema(description = "出库来源id")
    private Long recordId;
    @Schema(description = "入库类型")
    @Schema(description = "出库类型")
    private String recordType;
    @Schema(description = "产品规格id")
@@ -80,4 +80,7 @@
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
    @TableField("warehouse_info_id")
    private Long warehouseInfoId;
}