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.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 公司消息表
|
* </p>
|
*
|
* @author administrator
|
* @since 2025-05-26
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("tb_company")
|
public class TbCompany extends Model<TbCompany> {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.ASSIGN_ID)
|
private String id;
|
/**
|
* 发布用户
|
*/
|
@TableField("user_id")
|
private String userId;
|
/**
|
* 公司名称
|
*/
|
@TableField("company_name")
|
private String companyName;
|
/**
|
* 所在省
|
*/
|
private String city;
|
/**
|
* 所在省code
|
*/
|
@TableField("city_code")
|
private String cityCode;
|
/**
|
* 所在市
|
*/
|
private String province;
|
/**
|
* 所在市code
|
*/
|
@TableField("province_code")
|
private String provinceCode;
|
/**
|
* 所在区
|
*/
|
private String area;
|
/**
|
* 所在区code
|
*/
|
@TableField("area_code")
|
private String areaCode;
|
/**
|
* 成立时间
|
*/
|
@TableField("establish_time")
|
private String establishTime;
|
/**
|
* 1个体工商户
|
*/
|
@TableField("company_category")
|
private Integer companyCategory;
|
/**
|
* 行业id
|
*/
|
@TableField("company_industry_id")
|
private Integer companyIndustryId;
|
/**
|
* 1一般纳税人 2小规模纳税人 3税务未登记
|
*/
|
@TableField("taxpayer_type")
|
private Integer taxpayerType;
|
/**
|
* 纳税信用等级
|
*/
|
@TableField("tax_credit")
|
private String taxCredit;
|
/**
|
* 预估天数
|
*/
|
@TableField("estimated_days")
|
private Integer estimatedDays;
|
/**
|
* 公章数
|
*/
|
@TableField("official_seal_num")
|
private Integer officialSealNum;
|
/**
|
* 实缴资金
|
*/
|
@TableField("paid_in_funds")
|
private String paidInFunds;
|
/**
|
* 征信报告链接
|
*/
|
private String link;
|
/**
|
* 开票额度
|
*/
|
@TableField("invoice_limit")
|
private String invoiceLimit;
|
/**
|
* 注册资本 企查查
|
*/
|
@TableField("real_registered_capital")
|
private String realRegisteredCapital;
|
/**
|
* 注册资金
|
*/
|
@TableField("registered_capital")
|
private String registeredCapital;
|
/**
|
* 高新技术企业
|
*/
|
@TableField("high_tech_enterprise_technology")
|
private Integer highTechEnterpriseTechnology;
|
/**
|
* 社保缴纳0无1有
|
*/
|
@TableField("social_security")
|
private Integer socialSecurity;
|
/**
|
* 招投标0无1有
|
*/
|
private Integer tendering;
|
/**
|
* 商标0无 1有
|
*/
|
@TableField("have_trademark")
|
private Integer haveTrademark;
|
/**
|
* 商标数
|
*/
|
@TableField("trademark_num")
|
private Integer trademarkNum;
|
/**
|
* 专利0无 1有
|
*/
|
@TableField("have_patent")
|
private Integer havePatent;
|
/**
|
* 专利数
|
*/
|
@TableField("patent_num")
|
private Integer patentNum;
|
/**
|
* 软著0无1有
|
*/
|
@TableField("have_soft_works")
|
private Integer haveSoftWorks;
|
/**
|
* 软著数
|
*/
|
@TableField("soft_works_num")
|
private Integer softWorksNum;
|
/**
|
* 企业改名费
|
*/
|
@TableField("rename_money")
|
private BigDecimal renameMoney;
|
/**
|
* 预计增加时间
|
*/
|
@TableField("rename_day")
|
private Integer renameDay;
|
/**
|
* 迁区费用
|
*/
|
@TableField("relocation_area_money")
|
private BigDecimal relocationAreaMoney;
|
/**
|
* 迁区预计增加时间
|
*/
|
@TableField("relocation_area_day")
|
private Integer relocationAreaDay;
|
/**
|
* 售卖价格
|
*/
|
@TableField("sale_money")
|
private BigDecimal saleMoney;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 收件人
|
*/
|
private String recipient;
|
/**
|
* 收件人地址
|
*/
|
@TableField("recipient_address")
|
private String recipientAddress;
|
/**
|
* 所需资料
|
*/
|
private String information;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 1上架 2 下架 3已出售 4锁定中
|
*
|
*/
|
private Integer status;
|
@TableField("create_time")
|
private Date createTime;
|
|
/**
|
* 法人
|
*/
|
@TableField("oper_name")
|
private String operName;
|
/**
|
* 登记机关
|
*/
|
@TableField("belong_org")
|
private String belongOrg;
|
|
/**
|
* 登记状态
|
*/
|
@TableField("registration_status")
|
private String registrationStatus;
|
|
private String scope;
|
|
private Integer isDelete;
|
|
}
|