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;
|
|
|
|
}
|