评价列表展示店铺的评分

This commit is contained in:
lifenlong 2021-07-27 17:17:11 +08:00
parent a407d3a539
commit 4ac7c038f2

View File

@ -39,8 +39,15 @@ public class MemberEvaluationListVO {
@ApiModelProperty(value = "创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
@ApiModelProperty(value = "物流评分")
private Integer deliveryScore;
@ApiModelProperty(value = "服务评分")
private Integer serviceScore;
@ApiModelProperty(value = "描述评分")
private Integer descriptionScore;
}