liyong
2026-02-03 16c4741366fb54867febe7528fcc72e1e49b6482
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.ruoyi.basic.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@TableName("product_model")
public class ProductModel {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 序号
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 关联产品id
     */
    @Excel(name = "关联产品id")
    private Long productId;
 
    @TableField(exist = false)
    @Excel(name = "产品名称")
    private String productName;
 
    /**
     * 规格型号
     */
    @Excel(name = "规格型号")
    private String model;
 
    /**
     * 单位
     */
    @Excel(name = "单位")
    private String unit;
 
    /**
     * 生产炒机
     */
//    @Excel(name = "生产炒机")
    private String speculativeTradingName;
 
    /**
     * 产品图片
     */
//    @Excel(name = "产品图片")
    private String url;
 
    /**
     * 产品高度
     */
    @Excel(name = "产品高度")
    private String height;
 
    /**
     * 每件数量/支
     */
    @Excel(name = "每件数量/支")
    private String boxNum;
 
    /**
     * 单价(美元)/件
     */
    @Excel(name = "单价(美元)/件")
    private String dollarPrice;
 
    /**
     * 单价(元)/件
     */
    @Excel(name = "单价(元)/件")
    private String taxInclusiveUnitPrice;
 
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @TableField(exist = false)
    @Excel(name = "入库数量")
    private BigDecimal inboundNum;
    @TableField(exist = false)
    @Excel(name = "出库数量")
    private BigDecimal outboundNum;
    @TableField(exist = false)
    @Excel(name = "剩余库存")
    private BigDecimal stockQuantity;
 
    @TableField(exist = false)
    private LocalDateTime createTime;
}