parent
f2320d356d
commit
bfc0a4edee
@ -0,0 +1,64 @@
|
||||
package com.ruoyi.job.config;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.context.annotation.PropertySource;
|
||||
|
||||
@ConfigurationProperties(prefix = "backup")
|
||||
public class BackupConfig {
|
||||
|
||||
private String backupPath;
|
||||
private String mysqldumpPath;
|
||||
private String username;
|
||||
private String password;
|
||||
private String dbName;
|
||||
private Integer port;
|
||||
|
||||
public String getBackupPath() {
|
||||
return backupPath;
|
||||
}
|
||||
|
||||
public void setBackupPath(String backupPath) {
|
||||
this.backupPath = backupPath;
|
||||
}
|
||||
|
||||
public String getMysqldumpPath() {
|
||||
return mysqldumpPath;
|
||||
}
|
||||
|
||||
public void setMysqldumpPath(String mysqldumpPath) {
|
||||
this.mysqldumpPath = mysqldumpPath;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getDbName() {
|
||||
return dbName;
|
||||
}
|
||||
|
||||
public void setDbName(String dbName) {
|
||||
this.dbName = dbName;
|
||||
}
|
||||
|
||||
public Integer getPort() {
|
||||
return port;
|
||||
}
|
||||
|
||||
public void setPort(Integer port) {
|
||||
this.port = port;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue