zss
15 小时以前 3001173ec71036a44fc09ff56ad1d9e2cd6d3d38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
 
}