模块新增

This commit is contained in:
2025-12-04 16:45:56 +08:00
parent 9cb4844be4
commit b3200f8858
25 changed files with 562 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>agent</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.agent;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.agent", // 当前agent模块
"org.xyzh.common" // 公共模块
})
public class AgentApp {
private static final Logger logger = LoggerFactory.getLogger(AgentApp.class);
public static void main(String[] args) {
logger.info("======================== AgentApp 启动中 =========================");
SpringApplication.run(AgentApp.class, args);
logger.info("======================== AgentApp 启动成功 =========================");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>apis</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api-agent</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>apis</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api-bidding</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>apis</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api-crontab</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>apis</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api-platform</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -134,7 +134,7 @@ public class UserDeptRoleVO extends BaseVO {
dto.setDescription(vo.getRoleDescription());
dto.setScope(vo.getScope());
dto.setOwnerDeptId(vo.getOwnerDeptId());
dto.setStatus(vo.isRoleStatus());
dto.setStatus(vo.getRoleStatus());
dto.setOptsn(vo.getOptsn());
dto.setCreator(vo.getCreator());
dto.setUpdater(vo.getUpdater());
@@ -180,7 +180,7 @@ public class UserDeptRoleVO extends BaseVO {
vo.setRoleDescription(permissionVO.getRoleDescription());
vo.setScope(permissionVO.getRoleScope());
vo.setOwnerDeptId(permissionVO.getRoleOwnerDeptId());
vo.setRoleStatus(permissionVO.isRoleStatus());
vo.setRoleStatus(permissionVO.getRoleStatus());
vo.setOptsn(permissionVO.getOptsn());
vo.setCreator(permissionVO.getCreator());
vo.setUpdater(permissionVO.getUpdater());

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>apis</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api-workcase</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,7 @@
package org.xyzh;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

View File

@@ -20,6 +20,11 @@
<module>api-message</module>
<module>api-log</module>
<module>api-system</module>
<module>api-crontab</module>
<module>api-agent</module>
<module>api-bidding</module>
<module>api-platform</module>
<module>api-workcase</module>
</modules>
<properties>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>bidding</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.bidding;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.bidding", // 当前bidding模块
"org.xyzh.common" // 公共模块
})
public class BiddingApp {
private static final Logger logger = LoggerFactory.getLogger(BiddingApp.class);
public static void main(String[] args) {
logger.info("======================== BiddingApp 启动中 =========================");
SpringApplication.run(BiddingApp.class, args);
logger.info("======================== BiddingApp 启动成功 =========================");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>crontab</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.crontab;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.crontab", // 当前crontab模块
"org.xyzh.common" // 公共模块
})
public class CrontabApp {
private static final Logger logger = LoggerFactory.getLogger(CrontabApp.class);
public static void main(String[] args) {
logger.info("======================== CrontabApp 启动中 =========================");
SpringApplication.run(CrontabApp.class, args);
logger.info("======================== CrontabApp 启动成功 =========================");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>message</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.message;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.message", // 当前message模块
"org.xyzh.common" // 公共模块
})
public class MessageApp {
private static final Logger logger = LoggerFactory.getLogger(MessageApp.class);
public static void main(String[] args) {
logger.info("======================== MessageApp 启动中 =========================");
SpringApplication.run(MessageApp.class, args);
logger.info("======================== MessageApp 启动成功 =========================");
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>platform</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.platform;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.platform", // 当前platform模块
"org.xyzh.common" // 公共模块
})
public class PlatformApp {
private static final Logger logger = LoggerFactory.getLogger(PlatformApp.class);
public static void main(String[] args) {
logger.info("======================== PlatformApp 启动中 =========================");
SpringApplication.run(PlatformApp.class, args);
logger.info("======================== PlatformApp 启动成功 =========================");
}
}

View File

@@ -15,6 +15,12 @@
<module>system</module>
<module>auth</module>
<module>file</module>
<module>message</module>
<module>crontab</module>
<module>agent</module>
<module>bidding</module>
<module>platform</module>
<module>workcase</module>
</modules>
<properties>
@@ -247,7 +253,16 @@
<artifactId>common-auth</artifactId>
<version>${urban-lifeline.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh.common</groupId>
<artifactId>common-redis</artifactId>
<version>${urban-lifeline.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh.common</groupId>
<artifactId>common-utils</artifactId>
<version>${urban-lifeline.version}</version>
</dependency>
<!-- 服务模块 -->
<dependency>
<groupId>org.xyzh</groupId>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xyzh</groupId>
<artifactId>urban-lifeline</artifactId>
<version>1.0.0</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>case</artifactId>
<version>1.0.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
</project>

View File

@@ -0,0 +1,24 @@
package org.xyzh.workcase;
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@EnableDubbo // 启用 Dubbo 服务
@ComponentScan(basePackages = {
"org.xyzh.workcase", // workcase
"org.xyzh.common" // 公共模块
})
public class WorkcaseApp {
private static final Logger logger = LoggerFactory.getLogger(WorkcaseApp.class);
public static void main(String[] args) {
logger.info("======================== WorkcaseApp 启动中 =========================");
SpringApplication.run(WorkcaseApp.class, args);
logger.info("======================== WorkcaseApp 启动成功 =========================");
}
}

View File

@@ -0,0 +1,136 @@
<mxfile host="Electron" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/29.0.3 Chrome/140.0.7339.249 Electron/38.7.0 Safari/537.36" version="29.0.3">
<diagram name="第 1 页" id="5ECD0EICUl6v9GFSHp1a">
<mxGraphModel dx="2767" dy="980" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="A6Q9NJanCqLCFo-gPTNW-1" value="应用层\Web" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-500" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-14" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-15" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-16" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-18" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-2" value="&lt;span style=&quot;font-family: 仿宋_GB2312; letter-spacing: 0pt; font-size: 12pt; background: rgb(252, 252, 252);&quot;&gt;&lt;font face=&quot;Times New Roman Regular&quot;&gt;AI &lt;/font&gt;&lt;font face=&quot;仿宋_GB2312&quot;&gt;数智化平台&lt;/font&gt;&lt;/span&gt;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-10" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-21" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-22" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.75;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-23" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-26" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-28" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.25;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-27" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-3" value="&lt;span style=&quot;font-family: 仿宋_GB2312; letter-spacing: 0pt; font-size: 12pt; background: rgb(252, 252, 252);&quot;&gt;&lt;font face=&quot;仿宋_GB2312&quot;&gt;招投标智能体&lt;/font&gt;&lt;/span&gt;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="660" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-30" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-33" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-34" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-36" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-37" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=1;entryY=0;entryDx=0;entryDy=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-4" value="&lt;span style=&quot;font-family: 仿宋_GB2312; letter-spacing: 0pt; font-size: 12pt; background: rgb(252, 252, 252);&quot;&gt;&lt;font face=&quot;仿宋_GB2312&quot;&gt;智能客服智能体&lt;/font&gt;&lt;/span&gt;" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1250" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-5" value="服务层\Serv" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-500" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-6" value="gateway" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-250" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-7" value="filecenter" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-40" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-8" value="log" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="150" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-9" value="system" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="353" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-10" value="auth" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="530" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-11" value="admin" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1050" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-12" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.064;entryY=-0.01;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-13" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.162;entryY=-0.049;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-19" value="agent" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1240" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-20" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.682;entryY=0.01;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-24" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.368;entryY=-0.049;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-27" value="bidding" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1420" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-29" value="case" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1610" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-40" value="message" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="690" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-41" value="crontab" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="884" y="470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-32" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.912;entryY=-0.029;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-35" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.623;entryY=0.01;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-42" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-40" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-43" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-2" target="A6Q9NJanCqLCFo-gPTNW-41" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-44" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-40" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-45" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-3" target="A6Q9NJanCqLCFo-gPTNW-41" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="A6Q9NJanCqLCFo-gPTNW-46" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-40" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="oQNHS9vF_fVvW0YvuqGe-1" style="edgeStyle=none;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.394;entryY=-0.049;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="A6Q9NJanCqLCFo-gPTNW-4" target="A6Q9NJanCqLCFo-gPTNW-41">
<mxGeometry relative="1" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>