xiaoyong931011
2021-09-16 a833e22f6a258dfb66358d281524927ce326fe69
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
package cc.mrbird.febs.mall.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class MallMemberVo {
 
    private Long id;
 
    private String name;
 
    private String phone;
 
    private String email;
 
    private String sex;
 
    private String inviteId;
 
    private String referrerName;
 
    private String level;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    /**
     * 账户状态;1-正常 2-禁用
     */
    private Integer accountStatus;
    public static final int ACCOUNTSTATUS_Y = 1;
    public static final int ACCOUNTSTATUS_N = 2;
 
}