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 { public class ProjectProperties {
private Integer port; private Integer port;
private String title; private String title;
private String serviceCityUrl; private String areaUrl;
public Integer getPort() { public Integer getPort() {
return port; return port;
@ -36,11 +36,11 @@ public class ProjectProperties {
this.title = title; this.title = title;
} }
public String getServiceCityUrl() { public String getAreaUrl() {
return serviceCityUrl; return areaUrl;
} }
public void setServiceCityUrl(String serviceCityUrl) { public void setAreaUrl(String areaUrl) {
this.serviceCityUrl = serviceCityUrl; this.areaUrl = areaUrl;
} }
} }