package com.ruoyi.purchase.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.math.BigDecimal; @Data @AllArgsConstructor @NoArgsConstructor public class PurchaseReturnOrderProductsDetailVo { @Schema(description = "退货明细id") private Long id; @Schema(description = "销售台账的产品id") private Long salesLedgerProductId; @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 BigDecimal returnQuantity; @Schema(description = "退货单id") private Long purchaseReturnOrderId; @Schema(description = "是否质检") private Boolean isChecked; }