huliguo
2025-06-03 49d8bc411cb62a50c85dee37252d75928e7cdb27
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@TableName("tb_buyer_company_info")
@ApiModel(value = "用户支付前填写信息")
public class BuyerCompanyInfo {
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键ID")
    private String id;
 
    @TableField("order_id")
    @ApiModelProperty(value = "关联订单ID")
    private String orderId;
 
    @TableField("legal_person_img")
    @ApiModelProperty(value = "法人照片URL")
    private String legalPersonImg;
 
    @TableField("need_rename")
    @ApiModelProperty(value = "是否需要改名(0=不需要,1=需要)")
    private Integer needRename;
 
    @TableField("new_name")
    @ApiModelProperty(value = "新公司名称")
    private String newName;
 
    @TableField("backups_name")
    @ApiModelProperty(value = "备选公司名称")
    private String backupsName;
 
    @TableField("backups_name_one")
    @ApiModelProperty(value = "备选名称1")
    private String backupsNameOne;
 
    @TableField("backups_name_two")
    @ApiModelProperty(value = "备选名称2")
    private String backupsNameTwo;
 
    @TableField("registered_capital")
    @ApiModelProperty(value = "注册资本")
    private String registeredCapital;
 
    @TableField("account_type")
    @ApiModelProperty(value = "账户类型(1=无账户,2=变更,3=新法人注销,4=老法人注销)")
    private Integer accountType;
 
    @TableField("address")
    @ApiModelProperty(value = "公司地址")
    private String address;
 
    @TableField("new_district")
    @ApiModelProperty(value = "是否迁区(0=不需要,1=需要)")
    private Integer newDistrict;
 
    @TableField("tenancy_agreement")
    @ApiModelProperty(value = "租房合同文本/URL")
    private String tenancyAgreement;
 
    @TableField("property_ownership_certificate")
    @ApiModelProperty(value = "房产证文本/URL")
    private String propertyOwnershipCertificate;
 
    @TableField("account")
    @ApiModelProperty(value = "实名认证账户")
    private String account;
 
    @TableField("password")
    @ApiModelProperty(value = "实名认证密码")
    private String password;
 
    @TableField("business_scope")
    @ApiModelProperty(value = "经营范围")
    private String businessScope;
 
    @TableField("remark")
    @ApiModelProperty(value = "备注信息")
    private String remark;
 
    @TableField("create_time")
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
    @TableField("add_day")
    @ApiModelProperty(value = "新增天数")
    private Integer addDay;
}