liujie
2025-06-02 4b55eb4a50938ace45b2b2266caa0ce2aadfcd40
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
package com.ruoyi.system.model;
 
 
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.baomidou.mybatisplus.extension.activerecord.Model;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 用户支付前填写信息
 * </p>
 *
 * @author administrator
 * @since 2025-05-28
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_buyer_company_info")
public class TbBuyerCompanyInfo extends Model<TbBuyerCompanyInfo> {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
    /**
     * 订单id
     */
    @TableField("order_id")
    private String orderId;
    /**
     * 法人照片
     */
    @TableField("legal_person_img")
    private String legalPersonImg;
    /**
     * 改名0不需要 1需要
     */
    @TableField("need_rename")
    private Integer needRename;
    /**
     * 新名称
     */
    @TableField("new_name")
    private String newName;
    /**
     * 备选名称
     */
    @TableField("backups_name")
    private String backupsName;
    /**
     * 备选名称1
     */
    @TableField("backups_name_one")
    private String backupsNameOne;
    /**
     * 备选名称2
     */
    @TableField("backups_name_two")
    private String backupsNameTwo;
    /**
     * 注册资本
     */
    @TableField("registered_capital")
    private String registeredCapital;
    /**
     * 1无账户 2变更 3新法人注销 4老法人注销
     */
    @TableField("account_type")
    private Integer accountType;
    /**
     * 地址
     */
    private String address;
    /**
     * 是否迁区0不需要 1要
     */
    @TableField("new_district")
    private Integer newDistrict;
    /**
     * 租房合同
     */
    @TableField("tenancy_agreement")
    private String tenancyAgreement;
    /**
     * 房产证
     */
    @TableField("property_ownership_certificate")
    private String propertyOwnershipCertificate;
    /**
     * 实名认证账户
     */
    private String account;
    /**
     * 实名认证密码
     */
    private String password;
    /**
     * 经营范围
     */
    @TableField("business_scope")
    private String businessScope;
    private String remark;
    @TableField("create_time")
    private Date createTime;
    @TableField("add_day")
    private Integer addDay;
 
 
 
}