44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
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
package com.stylefeng.guns.modular.system.dto;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel
public class Medium {
    @TableField("profile_photo")
    @ApiModelProperty(value = "头像")
    private String profilePhoto;
    @TableField("nickname")
    @ApiModelProperty(value = "昵称")
    private String nickname;
    @TableField("user_type")
    @ApiModelProperty(value = "用户类型(1=普通,2=房东)")
    private Integer userType;
    @TableField("phone")
    @ApiModelProperty(value = "电话号码")
    private String phone;
    @TableField("wechat_qr_code")
    @ApiModelProperty(value = "微信二维码")
    private String wechatQRCode;
    @TableField("watch_app")
    @ApiModelProperty(value = "watchApp")
    private String watchApp;
    @TableField("status")
    @ApiModelProperty(value = "状态(1=正常,2=冻结,3=删除)", required = false)
    private Integer status;
    @ApiModelProperty(value = "id", required = false)
    private Integer id;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "注册时间", required = false)
    private Date insertTime;
    @ApiModelProperty(value = "名片照")
    private String businessCardPhoto;
    @ApiModelProperty(value = "个人简介")
    private String introduce;
    @ApiModelProperty(value = "代理人牌照号")
    private String agentLicenceCode;
    @ApiModelProperty(value = "公司名称")
    private String companyName;
    @ApiModelProperty(value = "公司地址")
    private String companyAddress;
    @ApiModelProperty(value = "城市id")
    private Integer cityId;
    @ApiModelProperty(value = "区id")
    private Integer districtId;
    @ApiModelProperty(value = "是否审核通过(1=待审核,2=审核通过,3=审核拒绝)", required = false)
    private Integer auditStatus;
    @ApiModelProperty(value = "是否审核通过(1=待审核,2=审核通过,3=审核拒绝)", required = false)
    private Integer auth;
    @ApiModelProperty(value = "审核备注", required = false)
    private String auditNote;
    @ApiModelProperty(value = "拒绝审核时间", required = false)
    private Date refuseDate;
    @ApiModelProperty(value = "审核时间", required = false)
    private Date changeTime;
}