- 在.gitignore中添加各模块SQL资源目录忽略规则 - 从client-unit模块移除空的MyBatis映射文件 - 在test-report模块pom.xml中添加client-unit、test-device依赖及poi-ooxml库 - 扩展TestReportConst类添加报告生成状态、存储路径等常量定义 - 增强TestReportController实现台账模板下载、数据导入、分组管理等REST接口 - 修改TestReportMapper查询语句添加报告生成状态和数量统计字段 - 扩展TestReportParam.AddParam添加可选ID参数支持前端指定ID - 在TestReportPO实体类中增加reportGenerateState字段存储生成状态 - 完善TestReportService接口定义台账导入、分组管理等业务方法 - 实现TestReportServiceImpl服务类中的台账导入、分组生成核心逻辑 - 添加报告ID解析、导入验证、文件处理等辅助方法实现
88 lines
2.6 KiB
XML
88 lines
2.6 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>ai-report</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>test-report</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>comservice</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>report-model</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>client-unit</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>test-device</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>njcn-common</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>mybatis-plus</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
<version>2.3.12</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn.gather</groupId>
|
|
<artifactId>system</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>4.1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|