liujie
2025-06-03 ced35443353a013091a70a240c846e4344fec19d
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
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;
 
    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;
 
}