Commit 82a4ec7f authored by 赵啸非's avatar 赵啸非

添加区域树

parent 10fb5222
...@@ -75,6 +75,8 @@ ...@@ -75,6 +75,8 @@
<properties> <properties>
<profiles.active>product</profiles.active> <profiles.active>product</profiles.active>
<profiles.server.port>18000</profiles.server.port> <profiles.server.port>18000</profiles.server.port>
<profiles.server.debug>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=25599
</profiles.server.debug>
<profiles.datasource.uri> <profiles.datasource.uri>
<![CDATA[jdbc:mysql://127.0.0.1:3306/setup-platform?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong]]></profiles.datasource.uri> <![CDATA[jdbc:mysql://127.0.0.1:3306/setup-platform?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Hongkong]]></profiles.datasource.uri>
<profiles.datasource.username>root</profiles.datasource.username> <profiles.datasource.username>root</profiles.datasource.username>
......
...@@ -431,6 +431,8 @@ public class SetupProjectController extends BaseCRUDJsonBodyMappingController<Se ...@@ -431,6 +431,8 @@ public class SetupProjectController extends BaseCRUDJsonBodyMappingController<Se
if (setupProjectEntity.getProjectStatus() > ProjectStatusEnum.未部署.getValue()) { if (setupProjectEntity.getProjectStatus() > ProjectStatusEnum.未部署.getValue()) {
bool = true; bool = true;
data.put("project", bool); data.put("project", bool);
data.put("siteCode", setupProjectEntity.getSiteCode());
return Rest.ok("项目工程已部署", data); return Rest.ok("项目工程已部署", data);
} }
return Rest.ok("项目工程未部署,进入引导界面", data); return Rest.ok("项目工程未部署,进入引导界面", data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment