核心变更: 1. 新增模块 - 评估报告模块 (evaluationreport): 报告生成与编辑 - 快捷评语模块 (quickcomment): 常用评语管理 - 报告模板模块 (reporttemplate): 报告模板配置 - 预警模块 (warning): 风险预警功能 - 风险模块 (risk): 风险分析功能 - 情况模块 (situation): 服刑情况跟踪 2. 功能增强 - 危险评估模块完善: 支持多种评估方法 - 问卷模块重构: 调查问卷整合到答题记录 - 罪犯模块: 新增Workbench工作台页面 - 计分考核: 新增计分规则管理 3. 枚举与配置 - 新增评估相关枚举: AssessmentType, EvaluationCycle等 - 统一风险等级枚举 - 更新字典数据类型常量 4. 数据库 - 新增 evaluation_report.sql - 新增 report_module.sql - 新增 prison_situation_warning_risk.sql Co-Authored-By: Claude <noreply@anthropic.com>
161 lines
6.2 KiB
XML
161 lines
6.2 KiB
XML
<?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">
|
|
<parent>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yudao-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
后端 Server 的主项目,通过引入需要 yudao-module-xxx 的依赖,
|
|
从而实现提供 RESTful API 给 yudao-ui-admin、yudao-ui-user 等前端项目。
|
|
本质上来说,它就是个空壳(容器)!
|
|
</description>
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-system</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-infra</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- 会员中心。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-member</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 数据报表。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-report</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- 工作流。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-bpm</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- 支付服务。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-pay</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 微信公众号模块。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-mp</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 商城相关模块。默认注释,保证编译速度-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-product</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-promotion</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-trade</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-statistics</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- CRM 相关模块。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-crm</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- ERP 相关模块。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-erp</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- AI 大模型相关模块。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-ai</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- IoT 物联网相关模块。默认注释,保证编译速度 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cn.iocoder.boot</groupId>-->
|
|
<!-- <artifactId>yudao-module-iot-biz</artifactId>-->
|
|
<!-- <version>${revision}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 监狱管理模块 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-prison</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- spring boot 配置所需依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- 服务保障相关 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-protection</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- 设置构建的 jar 包名 -->
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- 打包 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|