package com.doumee.dao.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2025/7/10 15:09
|
*/
|
@Data
|
public class UserCenterVO {
|
|
@ApiModelProperty(value = "会员头像全路径")
|
private String fullCoverImage;
|
|
@ApiModelProperty(value = "会员头像半路径")
|
private String coverImage;
|
|
@ApiModelProperty(value = "会员昵称")
|
private String nickName;
|
|
@ApiModelProperty(value = "姓名")
|
private String name;
|
|
@ApiModelProperty(value = "联系电话")
|
private String telephone;
|
|
@ApiModelProperty(value = "是否有消息")
|
private Boolean hasMessage;
|
|
@ApiModelProperty(value = "待支付订单数量")
|
private Integer waitPayCount;
|
|
@ApiModelProperty(value = "待收货订单数量")
|
private Integer waitReceiveCount;
|
|
}
|