package cc.mrbird.febs.mall.vo.clothes; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.Date; @Data @ApiModel(value = "ApiAllCommentVo", description = "参数") public class ApiAllCommentVo { @ApiModelProperty(value = "评论ID") private Long commentId; @ApiModelProperty(value = "昵称") private String memberName; @ApiModelProperty(value = "头像") private String memberAvatar; @ApiModelProperty(value = "内容") private String comment; @ApiModelProperty(value = "时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createdTime; @ApiModelProperty(value = "评论数量") private Integer commentCnt = 0; }