puzhibing
2023-11-28 7b726d5ff439e7b8bb66369ecc5881e370286bc8
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.util.Date;
 
/**
* APP用户
* @author pzb
* @Date 2021/12/1 12:03
*/
@Data
@TableName("db_user")
public class AppUser {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 编号
     */
    @TableField("code")
    private String code;
    /**
     * 头像
     */
    @TableField("profile_photo")
    private String profilePhoto;
    /**
     * 昵称
     */
    @TableField("nickname")
    private String nickname;
    /**
     * 用户类型(1=普通,2=房东,3=中介)
     */
    @TableField("user_type")
    private Integer userType;
    /**
     * 手机号
     */
    @TableField("phone")
    private String phone;
    /**
     * 微信openid
     */
    @TableField("wechat_openid")
    private String wechatOpenid;
    /**
     * 微信二维码
     */
    @TableField("wechat_qr_code")
    private String wechatQRCode;
    /**
     * WhatApp
     */
    @TableField("watch_app")
    private String watchApp;
    /**
     * 代理人牌照号
     */
    @TableField("agent_licence_code")
    private String agentLicenceCode;
    /**
     * 公司名称
     */
    @TableField("company_name")
    private String companyName;
    /**
     * 公司地址
     */
    @TableField("company_address")
    private String companyAddress;
    /**
     * 名片照
     */
    @TableField("business_card_photo")
    private String businessCardPhoto;
    /**
     * 审核状态(1=待审核,2=审核通过,3=审核拒绝)
     */
    @TableField("audit_status")
    private Integer auditStatus;
    /**
     * 审核注释
     */
    @TableField("audit_note")
    private String auditNote;
    /**
     * 状态(1=正常,2=冻结,3=删除)
     */
    @TableField("status")
    private Integer status;
    /**
     * 注册时间
     */
    @TableField("insert_time")
    private Date insertTime;
}