package cc.mrbird.febs.mall.vo.clothes;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class AdminClothesSocialCommentVo {
|
|
@ApiModelProperty(value = "评论ID")
|
private Long commentId;
|
|
@ApiModelProperty(value = "昵称")
|
private String memberName;
|
|
@ApiModelProperty(value = "展示状态 1:显示 0:隐藏")
|
private Integer showState;
|
|
@ApiModelProperty(value = "内容")
|
private String comment;
|
|
|
@ApiModelProperty(value = "时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createdTime;
|
|
}
|