p-honggang.li
2025-09-03 7307fad287994fce2567bf4a7bdd4b7d3f06ea83
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package com.webmanage.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * 产品定价实体
 * 
 * @author webmanage
 * @date 2024-08-07
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("tb_product_pricing")
public class ProductPricing implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 产品套件名称
     */
    @TableField("suite_name")
    private String suiteName;
 
    /**
     * 销售形式
     */
    @TableField("sales_form")
    private String salesForm;
 
    /**
     * 客户对象
     */
    @TableField("customer_type")
    private String customerType;
 
    /**
     * 账户数量
     */
    @TableField("account_limit")
    private String accountLimit;
 
    /**
     * 并发节点数
     */
    @TableField("concurrent_nodes")
    private String concurrentNodes;
 
    /**
     * 价格设置
     */
    @TableField("price_type")
    private String priceType;
 
    /**
     * 价格单位
     */
    @TableField("price_unit")
    private String priceUnit;
 
    /**
     * 货币价格值
     */
    @TableField("currency_price")
    private BigDecimal currencyPrice;
 
    /**
     * 积分价值
     */
    @TableField("points_price")
    private BigDecimal pointsPrice;
 
    /**
     * 启用状态
     */
    @TableField("is_active")
    private Boolean isActive;
 
    /**
     * 关联产品ID
     */
    @TableField("product_id")
    private String productId;
 
    /**
     * 产品名称
     */
    @TableField("product_name")
    private String productName;
 
    /**
     * 产品提供者ID
     */
    @TableField("provider_id")
    private String providerId;
 
    /**
     * 产品提供者名称
     */
    @TableField("provider_name")
    private String providerName;
 
    /**
     * 产品描述
     */
    @TableField("description")
    private String description;
 
    /**
     * 创建时间
     */
    @TableField(value = "created_at", fill = FieldFill.INSERT)
    private LocalDateTime createdAt;
 
    /**
     * 更新时间
     */
    @TableField(value = "updated_at", fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updatedAt;
 
    /**
     * 创建人ID
     */
    @TableField("created_by")
    private Long createdBy;
 
    /**
     * 更新人ID
     */
    @TableField("updated_by")
    private Long updatedBy;
 
    /**
     * 逻辑删除
     */
    @TableLogic
    @TableField("deleted")
    private Integer deleted;
}