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;
|
}
|
}
|