修改时新增案件日志 #348
+3
-2
@@ -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;
|
||||
/** 待缴费 */
|
||||
|
||||
+2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user