shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package com.ishop.model.vo;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 商品评论H5详情响应对象
 * @date 2023-07-04
 */
public class ProductReplyVo implements Serializable {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Integer getStar() {
        return star;
    }
 
    public void setStar(Integer star) {
        this.star = star;
    }
 
    public String getComment() {
        return comment;
    }
 
    public void setComment(String comment) {
        this.comment = comment;
    }
 
    public List<String> getPics() {
        return pics;
    }
 
    public void setPics(List<String> pics) {
        this.pics = pics;
    }
 
    public String getMerchantReplyContent() {
        return merchantReplyContent;
    }
 
    public void setMerchantReplyContent(String merchantReplyContent) {
        this.merchantReplyContent = merchantReplyContent;
    }
 
    public Long getMerchantReplyTime() {
        return merchantReplyTime;
    }
 
    public void setMerchantReplyTime(Long merchantReplyTime) {
        this.merchantReplyTime = merchantReplyTime;
    }
 
    public String getNickname() {
        return nickname;
    }
 
    public void setNickname(String nickname) {
        this.nickname = nickname;
    }
 
    public String getAvatar() {
        return avatar;
    }
 
    public void setAvatar(String avatar) {
        this.avatar = avatar;
    }
 
    public Long getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
    }
 
    public String getSku() {
        return sku;
    }
 
    public void setSku(String sku) {
        this.sku = sku;
    }
 
    public String getMerName() {
        return merName;
    }
 
    public void setMerName(String merName) {
        this.merName = merName;
    }
 
    public String getProductName() {
        return productName;
    }
 
    public void setProductName(String productName) {
        this.productName = productName;
    }
 
    public String getProductImage() {
        return productImage;
    }
 
    public void setProductImage(String productImage) {
        this.productImage = productImage;
    }
 
    public Boolean getIsLogoff() {
        return isLogoff;
    }
 
    public void setIsLogoff(Boolean logoff) {
        isLogoff = logoff;
    }
 
    //    @ApiModelProperty(value = "评论ID")
    private Long id;
 
//    @ApiModelProperty(value = "用户ID")
    private Long uid;
 
//    @ApiModelProperty(value = "商品星级")
    private Integer star;
 
//    @ApiModelProperty(value = "评论内容")
    private String comment;
 
//    @ApiModelProperty(value = "评论图片")
    private List<String> pics;
 
//    @ApiModelProperty(value = "管理员回复内容")
    private String merchantReplyContent;
 
//    @ApiModelProperty(value = "管理员回复时间")
    private Long merchantReplyTime;
 
//    @ApiModelProperty(value = "用户名称")
    private String nickname;
 
//    @ApiModelProperty(value = "用户头像")
    private String avatar;
 
//    @ApiModelProperty(value = "评论时间")
    private Long createTime;
 
//    @ApiModelProperty(value = "商品规格属性值,多个,号隔开")
    private String sku;
 
//    @ApiModelProperty(value = "商户名称")
    private String merName;
 
//    @ApiModelProperty(value = "商品名称")
    private String productName;
 
//    @ApiModelProperty(value = "商品图片")
    private String productImage;
 
//    @ApiModelProperty(value = "是否注销")
    private Boolean isLogoff = false;
}