- 添加问卷问题批量更新API: POST /prison/question/batch-update - 修复savePartitions循环调用API问题 (50题只需1次请求) - 修复onPartitionDragEnd拖拽排序性能问题 - 修复onQuestionDragEnd问题拖拽排序性能问题 - 添加QuestionBatchUpdateReqVO请求对象 - 添加自动填充来源字典SQL (35个选项)
78 lines
2.7 KiB
XML
78 lines
2.7 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-module-prison</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>yudao-module-prison</name>
|
|
<description>监狱管理模块:罪犯信息、监区管理、计分考核、危险评估等</description>
|
|
|
|
<dependencies>
|
|
<!-- 引入芋道框架 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 引入 system 模块 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-system</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- 引入 infra 模块 -->
|
|
<dependency>
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
<artifactId>yudao-module-infra</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- 工具类 -->
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|