zss
2 天以前 9468068e746f25fc2d4bd618b9a07166f269e32a
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
package com.ruoyi.procurementrecord.bean.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(name = "ShippingProductVo", description = "营销管理--发货出库产品列表")
public class ShippingProductVo {
    @Schema(description = "出库单id")
    private Long id;
 
    @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 outboundBatches;
 
    @Schema(description = "发货出库数量")
    private BigDecimal stockOutNum;
 
    @Schema(description = "批次号")
    private String batchNo;
 
    @Schema(description = "未退货数")
    private BigDecimal unQuantity;
 
    @Schema(description = "退货总数")
    private BigDecimal totalReturnNum;
 
    @Schema(description = "含税单价")
    private BigDecimal taxInclusiveUnitPrice;
}