package com.ruoyi.purchase.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.math.BigDecimal; @Data @Schema(name = "PurchaseStockInProductVo", description = "采购管理--采购订单下入库产品列表") public class PurchaseStockInProductVo { @Schema(description = "入库单id") private Long id; @Schema(description = "销售台账的产品id") private Long saleLedgerProductId; @Schema(description = "产品规格id") private Long productModelId; @Schema(description = "产品大类") private String productCategory; @Schema(description = "规格型号") private String specificationModel; @Schema(description = "单位") private String unit; @Schema(description = "入库单号") private String inboundBatches; @Schema(description = "入库数量") private BigDecimal stockInNum; @Schema(description = "批次号") private String batchNo; @Schema(description = "可退货数") private BigDecimal unQuantity; @Schema(description = "退货总数") private BigDecimal totalReturnNum; @Schema(description = "含税单价") private BigDecimal taxInclusiveUnitPrice; @Schema(description = "是否质检") private Boolean isChecked; }