郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.Domain.Utils;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
@Component
public class Properties {
 
 
    /**
    * @Description: 企业信息的文件路径
    * @date 2021/4/2 14:14
    */
    public static String enterprisePath;
 
    public static String enterprise;
    /**
    * @Description: 运输证文件路径
    * @date 2021/4/2 14:14
    */
    public static String transportCertificatePath;
 
    public static String transportCertificate;
 
    /**
    * @Description: 自检报告中 重大隐患文件存储路径
    * @date 2021/4/8 16:12
    */
    public static String hiddenDangerPath;
 
    public static String hiddenDanger;
 
    /**
     * @Description: 导入的文件路径
     * @date 2021/4/19 9:20
     */
    public static String filePath;
 
    /**
    * @Description: 安全生产标准化路径
    * @date 2021/4/30 9:22
    */
    public static String standardPath;
 
    public static String standard;
 
    /**
    * @Description: 合同申请的路径
    * @date 2021/5/10 9:27
    */
    public static String contractPath;
 
    public static String contract;
 
    /**
    * @Description:
    * @date 2021/7/5 13:46
    */
    public static String assessApplyPath;
 
    public static String assessApply;
 
    public static String workCertPath;
 
    public static String workCert;
 
 
    public  String getEnterprisePath() {
        return enterprisePath;
    }
 
    @Value("${enterprisePath}")
    public  void setEnterprisePath(String enterprisePath) {
        Properties.enterprisePath = enterprisePath;
    }
 
 
    public  String getEnterprise() {
        return enterprise;
    }
 
    @Value("${enterprise}")
    public  void setEnterprise(String enterprise) {
        Properties.enterprise = enterprise;
    }
 
 
    public  String getTransportCertificatePath() {
        return transportCertificatePath;
    }
 
    @Value("${transportCertificatePath}")
    public  void setTransportCertificatePath(String transportCertificatePath) {
        Properties.transportCertificatePath = transportCertificatePath;
    }
 
    public  String getTransportCertificate() {
        return transportCertificate;
    }
 
    @Value("${transportCertificate}")
    public  void setTransportCertificate(String transportCertificate) {
        Properties.transportCertificate = transportCertificate;
    }
 
    public  String getHiddenDangerPath() {
        return hiddenDangerPath;
    }
    @Value("${hiddenDangerPath}")
    public  void setHiddenDangerPath(String hiddenDangerPath) {
        Properties.hiddenDangerPath = hiddenDangerPath;
    }
 
    public  String getHiddenDanger() {
        return hiddenDanger;
    }
 
    @Value("${hiddenDanger}")
    public  void setHiddenDanger(String hiddenDanger) {
        Properties.hiddenDanger = hiddenDanger;
    }
 
    public  String getFilePath() {
        return filePath;
    }
    @Value("${filePath}")
    public  void setFilePath(String filePath) {
        Properties.filePath = filePath;
    }
 
    public  String getStandardPath() {
        return standardPath;
    }
 
    @Value("${standardPath}")
    public  void setStandardPath(String standardPath) {
        Properties.standardPath = standardPath;
    }
 
    public  String getStandard() {
        return standard;
    }
 
    @Value("${standard}")
    public  void setStandard(String standard) {
        Properties.standard = standard;
    }
 
    public  String getContractPath() {
        return contractPath;
    }
    @Value("${contractPath}")
    public  void setContractPath(String contractPath) {
        Properties.contractPath = contractPath;
    }
 
    public  String getContract() {
        return contract;
    }
 
    @Value("${contract}")
    public  void setContract(String contract) {
        Properties.contract = contract;
    }
 
    public  String getAssessApplyPath() {
        return assessApplyPath;
    }
 
    @Value("${assessApplyPath}")
    public  void setAssessApplyPath(String assessApplyPath) {
        Properties.assessApplyPath = assessApplyPath;
    }
 
    public  String getAssessApply() {
        return assessApply;
    }
 
    @Value("${assessApply}")
    public  void setAssessApply(String assessApply) {
        Properties.assessApply = assessApply;
    }
 
    public  String getWorkCertPath() {
        return workCertPath;
    }
 
    @Value("${workCertPath}")
    public  void setWorkCertPath(String workCertPath) {
        Properties.workCertPath = workCertPath;
    }
 
    public String getWorkCert(){ return workCert;}
 
    @Value("workCert")
    public  void setWorkCert(String workCert) {
        Properties.workCert = workCert;
    }
 
}