p-honggang.li
5 天以前 cda9decfde8c6b518639c5da506aa293c07f88ff
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
package com.webmanage.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 产品实体
 * 
 * @author webmanage
 * @date 2024-08-07
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("tb_product")
public class Product implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 产品名称
     */
    @TableField("product_name")
    private String productName;
 
    /**
     * 产品编码
     */
    @TableField("product_code")
    private String productCode;
 
    /**
     * 产品类型
     */
    @TableField("product_type")
    private String productType;
 
    /**
     * 产品分类
     */
    @TableField("category")
    private String category;
 
    /**
     * 产品描述
     */
    @TableField("description")
    private String description;
 
    /**
     * 提供者ID
     */
    @TableField("provider_id")
    private Long providerId;
 
    /**
     * 提供者名称
     */
    @TableField("provider_name")
    private String providerName;
 
    /**
     * 提供者类型
     */
    @TableField("provider_type")
    private String providerType;
 
    /**
     * 产品状态
     */
    @TableField("status")
    private String status;
 
    /**
     * 审核状态
     */
    @TableField("audit_status")
    private String auditStatus;
 
    /**
     * 产品标签
     */
    @TableField("tags")
    private String tags;
 
    /**
     * 封面图片
     */
    @TableField("cover_image")
    private String coverImage;
 
    /**
     * 演示地址
     */
    @TableField("demo_url")
    private String demoUrl;
 
    /**
     * 文档地址
     */
    @TableField("doc_url")
    private String docUrl;
 
    /**
     * 创建时间
     */
    @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;
}