1
zhujie
5 天以前 ec15861e14c66c38b1a8f5fffc6975d7da6c315c
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
151
152
package com.mzl.flower.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * @author @TaoJie
 * @since 2024-09-09
 */
@Data
@Accessors(chain = true)
@TableName("t_flower_delete")
public class FlowerDeleteDO{
 
    @TableId(value = "id")
    private Long id;
 
    @TableField("create_by")
    private String createBy;
 
    @TableField("create_time")
    private LocalDateTime createTime;
 
    @TableField("update_by")
    private String updateBy;
 
    @TableField("update_time")
    private LocalDateTime updateTime;
 
    @TableField("deleted")
    @TableLogic
    private Boolean deleted;
 
    /**
     * 分类id
     */
    private Long category;
 
    /**
     * 单位
     */
    private String unit;
 
    /**
     * 颜色
     */
    private String color;
 
    /**
     * 名称
     */
    private String name;
 
    /**
     * 封面
     */
    private String cover;
 
    /**
     * 轮播图
     */
    private String banners;
 
    /**
     * 视频
     */
    private String video;
 
    /**
     * 级别; FLOWER_LEVEL
     */
    private String level;
 
    /**
     * 所属供应商
     */
    private Long supplierId;
 
    /**
     * 供应商价格
     */
    private BigDecimal price;
 
    /**
     * 库存
     */
    private Integer stock;
 
    /**
     * 状态
     */
    private String status;
 
    /**
     * 标签
     */
    private String tags;
 
    /**
     * 审核意见
     */
    private String auditRemarks;
 
    /**
     * 审核时间
     */
    private LocalDateTime auditTime;
 
    /**
     * 是否显示
     */
    private Boolean shown;
 
    /**
     * 销量
     */
    private Integer sales;
 
    /**
     * 描述
     */
    private String description;
 
    /**
     * 是否推荐
     */
    private Boolean recommend;
 
    /**
     * 真实销量
     */
    private Integer realSales;
 
    /**
     * 推荐排序
     */
    private Integer recommendRank;
 
    /**
     * 同类排名
     */
    private Integer typeRank;
 
 
}