双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
package com.ruoyi.project.system.company.domain;
 
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 公司信息对象 sys_company
 *
 * @author ruoyi
 * @date 2020-05-04
 */
@Data
public class Company extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    @Excel(name = "id")
    private Long companyId;
 
    /** 公司名称 */
    @Excel(name = "公司名称")
    private String companyName;
 
    /** 公司联系人 */
    @Excel(name = "公司联系人")
    private String companyPrincipal;
 
    /** 公司地址 */
    @Excel(name = "公司地址")
    private String companyAddress;
 
    /** 公司联系人电话 */
    @Excel(name = "公司联系人电话")
    private String companyPhone;
 
    /** 公司四色平面图 */
    @Excel(name = "公司四色平面图")
    private String companyFourColorMapUrl;
 
 
    /** 岗位安全风险柱状图 */
    @Excel(name = "岗位安全风险柱状图")
    private String postSafetyRiskBarChartUrl;
 
    /** 公司所在区域 */
    private String companyRegion;
 
    /** 统一社会信用代码 */
    @Excel(name = "统一社会信用代码")
    private String companyUnifiedSocialCreditCode;
 
    /** 营业执照 */
    @Excel(name = "营业执照")
    private String companyBusinessLicense;
 
    /** 营业执照注册地址 */
    @Excel(name = "营业执照注册地址")
    private String companyRegisteredAddressOfBusinessLicense;
 
    /** 规模 */
    @Excel(name = "规模")
    private String companyScale;
 
    /** 职工人数(人) */
    @Excel(name = "职工人数(人)")
    private Integer companyNumberOfEmployees;
 
    /** 成立时间 */
    @Excel(name = "成立时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date companyEstablished;
 
    /** 占地面积(㎡) */
    @Excel(name = "占地面积(㎡)")
    private Long companyArea;
 
    /** 注册资金(万元) */
    @Excel(name = "注册资金(万元)")
    private Long companyRegisteredCapital;
 
    /** 资产总额(万元) */
    @Excel(name = "资产总额(万元)")
    private Long companyTotalAssets;
 
    /** 上年度实际收入(万元) */
    @Excel(name = "上年度实际收入(万元)")
    private Long companyActualIncomeOfThePreviousYear;
 
    /** 年利润(万元) */
    @Excel(name = "年利润(万元)")
    private Long companyAnnualProfit;
 
    /** 经济类型 */
    @Excel(name = "经济类型")
    private String companyEconomicType;
 
    /** 所属行业 */
    @Excel(name = "所属行业")
    private String companyIndustry;
 
    @Excel(name = "所属子行业")
    private String companySubIndustry;
 
    /** 法定代表人 */
    @Excel(name = "法定代表人")
    private String companyLegalRepresentative;
 
    /** 法人职务 */
    @Excel(name = "法人职务")
    private String companyCorporatePosition;
 
    /** 法人联系方式 */
    @Excel(name = "法人联系方式")
    private String companyLegalPersonPhone;
 
    /** 法人办公电话 */
    @Excel(name = "法人办公电话")
    private String companyCorporateOfficePhone;
 
    /** 整改负责人 */
    @Excel(name = "整改负责人")
    private String companyPersonInChargeOfRectification;
 
    /** 整改人电话 */
    @Excel(name = "整改人电话")
    private String companyRectifierPhone;
 
    /** 主管单位 */
    @Excel(name = "主管单位")
    private String companyOrganizer;
 
    /** 所属集团公司名称 */
    @Excel(name = "所属集团公司名称")
    private String companyGroupCompanyName;
 
    /** 安全职能部门 */
    @Excel(name = "安全职能部门")
    private String companySecurityFunction;
 
    /** 邮政编码 */
    @Excel(name = "邮政编码")
    private String companyPostalCode;
 
    /** 简介 */
    @Excel(name = "简介")
    private String companyIntroduction;
 
    /** 其他 */
    @Excel(name = "其他")
    private String companyOther;
 
 
    private Long parentId;
 
 
    private String ancestors;
 
    private String parentName;
 
 
}