doum
2025-12-12 68c3ad67a7042432fa92e8587bd75a88589454aa
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
130
131
132
133
134
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.util.List;
 
/**
 * 创作中心申请表
 * @author 江蹄蹄
 * @date 2023/03/21 15:48
 */
@Data
@ApiModel("创作中心申请表")
@TableName("`creation_apply`")
public class CreationApply {
 
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    @ExcelColumn(name="创建人编码")
    private Integer creator;
 
    @ApiModelProperty(value = "创建时间")
    @ExcelColumn(name="创建时间")
    
    private Date createDate;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    @ExcelColumn(name="更新人编码")
    private Integer editor;
 
    @ApiModelProperty(value = "更新时间")
    @ExcelColumn(name="更新时间")
    
    private Date editDate;
 
    @ApiModelProperty(value = "是否删除0否 1是", example = "1")
    @ExcelColumn(name="是否删除0否 1是")
    private Integer isdeleted;
 
    @ApiModelProperty(value = "备注")
    @ExcelColumn(name="备注")
    private String remark;
 
    @ApiModelProperty(value = "真实姓名")
    @ExcelColumn(name="真实姓名")
    private String realname;
 
    @ApiModelProperty(value = "性别 0男 1女 2未知", example = "1")
    @ExcelColumn(name="性别 0男 1女 2未知")
    private Integer sex;
 
    @ApiModelProperty(value = "邮箱")
    @ExcelColumn(name="邮箱")
    private String email;
 
    @ApiModelProperty(value = "手机号")
    @ExcelColumn(name="手机号")
    private String phone;
 
    @ApiModelProperty(value = "出生日期")
    @ExcelColumn(name="出生日期")
    
    private Date birthday;
 
    @ApiModelProperty(value = "身份证号")
    @ExcelColumn(name="身份证号")
    private String idcard;
 
    @ApiModelProperty(value = "身份证正面照")
    @ExcelColumn(name="身份证正面照")
    private String idcardImg;
 
    @ApiModelProperty(value = "身份证反面照")
    @ExcelColumn(name="身份证反面照")
    private String idcardImgBack;
 
    @ApiModelProperty(value = "状态0申请中 1申请通过 2申请不通过", example = "1")
    @ExcelColumn(name="状态0申请中 1申请通过 2申请不通过")
    private Integer status;
 
    @ApiModelProperty(value = "所属县区编码(关联areas)", example = "1")
    @ExcelColumn(name="所属县区编码(关联areas)")
    private Integer areaId;
 
    @ApiModelProperty(value = "地址")
    @ExcelColumn(name="地址")
    private String addr;
 
    @ApiModelProperty(value = "个人介绍")
    @ExcelColumn(name="个人介绍")
    private String info;
 
    @ApiModelProperty(value = "数据来源 0小程序申请 1后台录入", example = "1")
    @ExcelColumn(name="数据来源 0小程序申请 1后台录入")
    private Integer origin;
 
    @ApiModelProperty(value = "申请用户编码(管理member表)", example = "1")
    @ExcelColumn(name="申请用户编码(管理member表)")
    private Integer memberId;
 
    @ApiModelProperty(value = "审核备注")
    @ExcelColumn(name="审核备注")
    private String checkInfo;
 
    @ApiModelProperty(value = "审核时间")
    @ExcelColumn(name="审核时间")
    
    private Date checkDate;
 
    @ApiModelProperty(value = "昵称")
    @TableField(exist = false)
    private String nikeName;
 
    @ApiModelProperty(value = "图片路径")
    @TableField(exist = false)
    private String resourcePath;
 
    @ApiModelProperty(value = "平台集合")
    @TableField(exist = false)
    private List<CreationApplyPlat> applyPlatList;
 
}