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
package com.mzl.flower.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import java.time.LocalDateTime;
 
import com.mzl.flower.base.BaseEntityLogic;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * 商品评论表
 *
 * @author @TaoJie
 * @since 2024-09-29
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("t_flower_comment")
public class FlowerCommentDO extends BaseEntityLogic {
 
 
    /**
     * 订单id
     */
    private String orderId;
 
    /**
     * 订单商品id
     */
    private String orderItemId;
 
    /**
     * 商户id
     */
    private Long customerId;
 
    /**
     * 商户用户ID
     */
    private String customerUserId;
 
    /**
     * 供应商Id
     */
    private Long supplierId;
 
    /**
     * 供应商用户Id
     */
    private String supplierUserId;
 
    /**
     * 商品id
     */
    private Long flowerId;
 
    /**
     * 商品图片
     */
    private String flowerCover;
 
    /**
     * 等级
     */
    private Integer commentGrade;
 
    /**
     * 内容
     */
    private String comment;
 
    /**
     * 内容图片
     */
    private String commentImages;
 
    /**
     * 匿名标志 0-非匿名 1-匿名
     */
    private Integer anonymityFalg;
 
    /**
     * 显示标志 0-显示 1-隐藏
     */
    private Integer showFlag;
 
 
    /**
     * 回复内容
     */
    private String replayContent;
 
    /**
     * 回复人
     */
    private String replayBy;
 
 
    /**
     * 回复时间
     */
    private LocalDateTime replayTime;
 
 
 
}