111
rk
2025-08-27 367281413e2120cb9192a2ec9ecbc49c4331b6af
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
package com.doumee.dao.business.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 会员身份认证信息表
 * @author 江蹄蹄
 * @date 2025/07/09 12:00
 */
@Data
@ApiModel("会员身份认证信息表")
@TableName("`identity_info`")
public class IdentityInfo {
 
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键", example = "1")
    private Integer id;
 
    @ApiModelProperty(value = "是否已删除 0未删除 1已删除", example = "1")
    private Integer deleted;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    @ExcelColumn(name="申请时间",index = 10,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 16)
    private Integer createUser;
 
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    private Integer updateUser;
 
    @ApiModelProperty(value = "更新时间")
    private Date updateTime;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "类型:0=用工身份;1=货运身份;2=供餐身份;", example = "1")
    @ExcelColumn(name="类型",valueMapping = "0=用工身份;1=货运身份;2=供餐身份;",index = 4,width = 10)
    private Integer type;
 
    @ApiModelProperty(value = "会员主键", example = "1")
    private Integer memberId;
 
    @ApiModelProperty(value = "认证类型:0=个人;1=企业", example = "1")
    @ExcelColumn(name="认证类型",valueMapping = "0=个人;1=企业;",index = 5,width = 10)
    private Integer authType;
 
    @ApiModelProperty(value = "联系人")
    @ExcelColumn(name="联系人",index = 6,width = 10)
    private String linkName;
 
    @ApiModelProperty(value = "联系方式")
    @ExcelColumn(name="联系方式",index = 7,width = 10)
    private String telephone;
 
    @ApiModelProperty(value = "接单位置")
    @ExcelColumn(name="接单位置",index = 8,width = 20)
    private String location;
 
    @ApiModelProperty(value = "单位名称")
    @ExcelColumn(name="单位名称",index = 9,width = 10)
    private String companyName;
 
    @ApiModelProperty(value = "纬度", example = "1")
    private BigDecimal lat;
 
    @ApiModelProperty(value = "经度", example = "1")
    private BigDecimal lgt;
 
    @ApiModelProperty(value = "身份证人像面/营业执照")
    private String img1;
 
    @ApiModelProperty(value = "身份证国徽面/道路交通营运许可证/食品经营许可证")
    private String img2;
 
    @ApiModelProperty(value = "从业人员健康证")
    private String img3;
 
    @ApiModelProperty(value = "其他认证资料")
    private String img4;
 
    @ApiModelProperty(value = "认证审批状态:1=申请中;2=已通过;3=未通过;", example = "1")
    @ExcelColumn(name="审核状态",valueMapping = "1=申请中;2=已通过;3=未通过;",index = 1,width = 10)
    private Integer auditStatus;
 
    @ApiModelProperty(value = "认证审批时间")
    @ExcelColumn(name="认证审批时间",index = 12,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 16)
    private Date auditTime;
 
    @ApiModelProperty(value = "认证审批备注")
    @ExcelColumn(name="认证审批备注",index = 13,width = 16)
    private String auditRemark;
 
 
    @ApiModelProperty(value = "审核人姓名")
    @TableField(exist = false)
    @ExcelColumn(name="审核人姓名",index = 11,width = 10)
    private String editorName;
    @ApiModelProperty(value = "用户openid")
    @ExcelColumn(name="openid",index = 2,width = 20)
    @TableField(exist = false)
    private String openid;
    @ApiModelProperty(value = "用户昵称")
    @ExcelColumn(name="会员昵称",index = 3,width = 10)
    @TableField(exist = false)
    private String memberName;
    @ApiModelProperty(value = "图片集合")
    @TableField(exist = false)
    private List<String> imgList;
}