config配置文件提交 --renpc

This commit is contained in:
Renpc-kilig 2023-10-31 12:23:27 +08:00
parent 3fa041bf25
commit 1a20030179

View File

@ -18,7 +18,7 @@ import org.springframework.stereotype.Component;
public class ProjectProperties {
private Integer port;
private String title;
private String serviceCityUrl;
private String areaUrl;
public Integer getPort() {
return port;
@ -36,11 +36,11 @@ public class ProjectProperties {
this.title = title;
}
public String getServiceCityUrl() {
return serviceCityUrl;
public String getAreaUrl() {
return areaUrl;
}
public void setServiceCityUrl(String serviceCityUrl) {
this.serviceCityUrl = serviceCityUrl;
public void setAreaUrl(String areaUrl) {
this.areaUrl = areaUrl;
}
}