发版合并 #363

Merged
wangqiong123 merged 129 commits from dev into pro 2024-06-03 02:26:01 +00:00
3 changed files with 7 additions and 2 deletions
Showing only changes of commit f7e4f7df3f - Show all commits
+3 -2
View File
@@ -9,7 +9,8 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>ruoyi-admin</artifactId>
<artifactId>SmartArbitrate</artifactId>
<version>1.1.0</version>
<description>
web服务入口
@@ -94,7 +95,7 @@
</configuration>
</plugin>
</plugins>
<finalName>${project.artifactId}</finalName>
<finalName>${project.artifactId}-${project.version}</finalName>
</build>
</project>
@@ -6,6 +6,8 @@ package com.ruoyi.common.constant;
public class CaseApplicationConstants {
/** 立案申请 */
public static final int CASE_APPLICATION = 0;
/** 案件修改 */
public static final int CASE_EDIT = -1;
/** 待立案审查 */
public static final int CASE_CHECK = 1;
/** 待缴费 */
@@ -1419,6 +1419,8 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
// 异步新增案件日志
ThreadPoolUtil.execute(() -> {
try {
//新增案件日志记录
insertCaseLog(caseApplication.getId(), CaseApplicationConstants.CASE_EDIT, "修改案件信息");
caseApplication.setCaseAppliId(caseApplication.getId());
caseApplication.setCaseLogId(IdWorkerUtil.getId());
int insertRow = caseApplicationLogMapper.insert(caseApplication);