rk
5 小时以前 55642c818f14bf8cf52c98e6858014bd8dc3d3a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
 
}