From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: 星期一, 19 六月 2023 14:44:19 +0800
Subject: [PATCH] 删除

---
 src/main/java/com/gk/firework/Domain/Utils/Properties.java |  206 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 206 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/gk/firework/Domain/Utils/Properties.java b/src/main/java/com/gk/firework/Domain/Utils/Properties.java
new file mode 100644
index 0000000..f73f39f
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/Utils/Properties.java
@@ -0,0 +1,206 @@
+package com.gk.firework.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;
+
+    /**
+    * @Description: customer
+    * @date 2021/12/16 15:02
+    */
+
+    public static String customerPath;
+
+    public static String customer;
+
+    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 getCustomerPath() {
+        return customerPath;
+    }
+
+    @Value("${customerPath}")
+    public  void setCustomerPath(String customerPath) {
+        Properties.customerPath = customerPath;
+    }
+
+
+    public  String getCustomer() {
+        return customer;
+    }
+
+    @Value("${customer}")
+    public  void setCustomer(String customer) {
+        Properties.customer = customer;
+    }
+}

--
Gitblit v1.9.2