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;
|
}
|