15 小时以前 c15e67c83394c1734eb4e9802d8f343c6076efc1
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
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 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 Boolean isChecked;
}