MrShi
8 小时以前 e50954f0708ecbbc672352102ae3b24279d40cc1
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.doumee.dao.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 会员详情VO
 * @author rk
 * @date 2026/04/13
 */
@Data
@ApiModel("会员详情信息")
public class MemberDetailVO {
 
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "用户昵称")
    private String nickName;
 
    @ApiModelProperty(value = "会员姓名")
    private String name;
 
    @ApiModelProperty(value = "openid")
    private String openid;
 
    @ApiModelProperty(value = "授权手机号")
    private String telephone;
 
    @ApiModelProperty(value = "头像全路径")
    private String fullCoverImage;
 
    @ApiModelProperty(value = "当前余额(单位:分)")
    private Long amount;
 
    @ApiModelProperty(value = "历史总金额(单位:分)")
    private Long totalAmount;
 
    @ApiModelProperty(value = "状态 0=正常;1=停用;2=已注销")
    private Integer status;
 
    @ApiModelProperty(value = "当前使用身份:0=用工发布方;1=用工接单方")
    private Integer useIdentity;
 
    @ApiModelProperty(value = "用户类型:0=会员用户;1=司机;2=店铺人员")
    private Integer userType;
 
    @ApiModelProperty(value = "业务状态:0=未认证;1=认证通过;2=认证未通过;3=已支付押金")
    private Integer businessStatus;
 
    @ApiModelProperty(value = "评分")
    private BigDecimal score;
 
    @ApiModelProperty(value = "总接单量")
    private Long receiveNum;
 
    @ApiModelProperty(value = "总发单量")
    private Long publishNum;
 
    @ApiModelProperty(value = "注册时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    @ApiModelProperty(value = "最后登录时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date loginTime;
 
    @ApiModelProperty(value = "总登录次数")
    private Long loginTimes;
 
    @ApiModelProperty(value = "省份")
    private String province;
 
    @ApiModelProperty(value = "城市")
    private String city;
 
    @ApiModelProperty(value = "区县")
    private String area;
 
    @ApiModelProperty(value = "是否接受自动派单:0=否;1=是")
    private Integer autoReceiveStatus;
 
}