From 1a2003017918ef0788ae0d3223133012838a0d41 Mon Sep 17 00:00:00 2001 From: Renpc-kilig <308442850@qq.com> Date: Tue, 31 Oct 2023 12:23:27 +0800 Subject: [PATCH] =?UTF-8?q?config=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=20--renpc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/properties/ProjectProperties.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/cm/population/config/properties/ProjectProperties.java b/src/main/java/com/cm/population/config/properties/ProjectProperties.java index efdd9fa..b8cbfd7 100644 --- a/src/main/java/com/cm/population/config/properties/ProjectProperties.java +++ b/src/main/java/com/cm/population/config/properties/ProjectProperties.java @@ -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; } }