1
luodangjia
2025-01-22 895ed97195660b0196b61f5da626ac6d18e2068d
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
package com.ruoyi.company.api.model;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class RegisterUser {
    @Schema(description = "账号名称")
    private String accountName;
 
    @Schema(description = "密码")
    private String password;
 
    @Schema(description = "手机号")
    private String phone;
 
    @Schema(description = "短信验证码")
    private String smsCode;
 
    /** 公司名称 */
    @Schema(description = "公司名称")
    private String companyName;
 
    /** 统一社会信用代码 */
    @Schema(description = "统一社会信用代码")
    private String socialCode;
 
    /** 省份代码 */
    @Schema(description = "省份代码")
    private String provinceCode;
 
    /** 城市代码 */
    @Schema(description = "城市代码")
    private String cityCode;
 
    /** 区域代码 */
    @Schema(description = "区域代码")
    private String districtCode;
 
    /** 经营地址 */
    @Schema(description = "经营地址")
    private String businessAddress;
 
    /** 身份证正面照片 */
    @Schema(description = "身份证正面照片")
    private String idCardFrontUrl;
 
    /** 身份证反面照片 */
    @Schema(description = "身份证反面照片")
    private String idCardBackUrl;
 
    /** 法人姓名 */
    @Schema(description = "法人姓名")
    private String legalPersonName;
 
    /** 身份证号码 */
    @Schema(description = "身份证号码")
    private String idCardNumber;
 
    /** 营业执照照片 */
    @Schema(description = "营业执照照片")
    private String businessLicenseUrl;
 
    /** 资质类目:1-再生资源回收备案资质 2-家电拆解资质 3-报废机动车回收拆解资质 4-危险废物经营许可证 0-其他证书 */
    @Schema(description = "资质类目:1-再生资源回收备案资质 2-家电拆解资质 3-报废机动车回收拆解资质 4-危险废物经营许可证 0-其他证书")
    private Integer category;
 
    /** 拆解企业资质证书图片地址 */
    @Schema(description = "拆解企业资质证书图片地址")
    private String certificateUrl;
 
    /** 联系人姓名 */
    @Schema(description = "联系人姓名")
    private String contactName;
 
    /** 联系人手机号 */
    @Schema(description = "联系人手机号")
    private String contactPhone;
 
    /** 联系人邮箱 */
    @Schema(description = "联系人邮箱")
    private String email;
 
    private String code;
 
 
}