goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
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
package cn.stylefeng.guns.modular.business.entity;
 
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * <p>
 * 用户评价表
 * </p>
 *
 * @author guohongjin
 * @since 2024-01-02
 */
@Data
@TableName("t_user_evaluate")
@ApiModel(value = "用户评价表")
public class UserEvaluate {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键id
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value = "主键id")
    @ChineseDescription("主键id")
    private Long id;
    /**
     * 用户id
     */
    @TableField("user_id")
    @ApiModelProperty(value = "用户id")
    @ChineseDescription("用户id")
    private Long userId;
    /**
     * 业务类型 1-课程,2-咨询
     */
    @TableField("buiness_type")
    @ApiModelProperty(value = "业务类型 1-课程,2-咨询")
    @ChineseDescription("业务类型 1-课程,2-咨询")
    private Integer buinessType;
    /**
     * 业务id 课程id或咨询预约id
     */
    @TableField("buiness_id")
    @ApiModelProperty(value = "业务id 课程id或咨询人员id")
    @ChineseDescription("业务id 课程id或咨询人员id")
    private Long buinessId;
    /**
     * 评分
     */
    @ApiModelProperty(value = "评分")
    @ChineseDescription("评分")
    private BigDecimal score;
    /**
     * 内容
     */
    @ApiModelProperty(value = "内容")
    @ChineseDescription("内容")
    private String content;
 
    /**
     * 删除状态 是否删除 1-是,0-否
     */
    @TableField("is_delete")
    @ApiModelProperty(value = "删除状态 是否删除 1-是,0-否")
    @ChineseDescription("删除状态 是否删除 1-是,0-否")
    private Integer isDelete;
 
    /**
     * 创建时间
     */
    @ApiModelProperty("创建时间")
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    @ChineseDescription("创建时间")
    private Date createTime;
 
 
    /**
     * 更新时间
     */
    @ApiModelProperty("更新时间")
    @TableField(value = "update_time", fill = FieldFill.UPDATE)
    @ChineseDescription("更新时间")
    private Date updateTime;
 
    /**
     * 更新人
     */
    @ApiModelProperty("更新人")
    @TableField(value = "update_user", fill = FieldFill.UPDATE)
    @ChineseDescription("更新人")
    private Long updateUser;
 
    @ApiModelProperty("头像")
    @TableField(exist = false)
    @ChineseDescription("头像")
    private String avatar;
 
 
    @ApiModelProperty("昵称用户名")
    @TableField(exist = false)
    @ChineseDescription("昵称用户名")
    private String nickName;
 
 
}