rk
2 天以前 ab9cd2c82bd64de8e33510db1d1e78a5b3b4de70
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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 = "openid")
    private String openid;
 
    @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;
 
    @ApiModelProperty(value = "退款中订单数量")
    private Integer refundingCount;
 
    @ApiModelProperty(value = "我注册的门店主键(门店用户时返回)")
    private Integer shopId;
 
    @ApiModelProperty(value = "我注册的门店审核状态(门店用户时返回): 0=待审核 1=已通过 2=已驳回 3=已缴纳保证金")
    private Integer shopAuditStatus;
 
    @ApiModelProperty(value = "我当前绑定的门店")
    private String bindShopId;
 
 
 
}