luo
2023-12-09 cb5ddf074d60b72e35ee4bafaec95530f53d1839
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
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 com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
 
import java.util.Date;
 
/**
* APP用户
* @author pzb
* @Date 2021/12/1 12:03
*/
@Data
@TableName("t_app_user")
public class AppUser {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 编号
     */
    @TableField("code")
    private String code;
    /**
     * 头像
     */
    @TableField("profile_photo")
    @ApiModelProperty(value = "头像", required = true)
    private String profilePhoto;
    /**
     * 昵称
     */
    @TableField("nickname")
    @ApiModelProperty(value = "昵称", required = true)
    private String nickname;
    /**
     * 用户类型(1=普通,2=房东,3=中介)
     */
    @TableField("user_type")
    @ApiModelProperty(value = "用户类型(1=普通,2=房东)", required = true)
    private Integer userType;
    /**
     * 手机号
     */
    @TableField("phone")
    @ApiModelProperty(value = "电话号码", required = true)
    private String phone;
    /**
     * 微信openid
     */
    @TableField("wechat_openid")
    private String wechatOpenid;
    /**
     * 微信二维码
     */
    @TableField("wechat_qr_code")
    @ApiModelProperty(value = "微信二维码", required = true)
    private String wechatQRCode;
    /**
     * WhatApp
     */
    @TableField("watch_app")
    @ApiModelProperty(value = "watchApp", required = true)
    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")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date insertTime;
    /**
     * 中介的个人简介
     */
    @TableField("introduce")
    private String introduce;
    /**
     * 中介所在公司所在的市
     */
    @TableField("city_id")
    private Integer cityId;
    /**
     * 中介所在公司所在的区
     */
    @TableField("district_id")
    private Integer districtId;
}