陶杰
2024-08-22 ee9032d9baf5f33e376d2d2699136e0a7b26bec7
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
package com.mzl.flower.entity.flower;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseAutoPhyEntity;
import lombok.Data;
 
@Data
@TableName("t_flower_category")
public class FlowerCategory extends BaseAutoPhyEntity {
 
    @TableField("name")
    private String name;//名称
 
    @TableField("parent_id")
    private Long parentId;//父分类id
 
    @TableField("parent_name")
    private String parentName;//父分类名称
 
    @TableField("color")
    private String color;//颜色
 
    @TableField("unit")
    private String unit;//单位
 
    @TableField("image_url")
    private String imageUrl;//图片
 
    @TableField("sort_by")
    private Integer sortBy;//排序
 
    @TableField("param_id")
    private Long paramId;//参数集id
 
    @TableField("weight")
    private Double weight;//重量
 
    @TableField("weight_a")
    private Double weightA;//A级重量
 
    @TableField("weight_b")
    private Double weightB;//B级重量
 
    @TableField("weight_c")
    private Double weightC;//C级重量
 
    @TableField("weight_d")
    private Double weightD;//D级重量
 
    @TableField("weight_e")
    private Double weightE;//E级重量
 
    @TableField("weight_o")
    private Double weightO;//O级重量
 
    @TableField("shown")
    private Boolean shown;//是否展示
 
    @TableField("level_limit")
    private String levelLimit;//级别限制
 
}