ソースを参照

修改时新增案件日志

wangqiong 2 年 前
コミット
30e0be1493

+ 3
- 2
ruoyi-admin/pom.xml ファイルの表示

9
     </parent>
9
     </parent>
10
     <modelVersion>4.0.0</modelVersion>
10
     <modelVersion>4.0.0</modelVersion>
11
     <packaging>jar</packaging>
11
     <packaging>jar</packaging>
12
-    <artifactId>ruoyi-admin</artifactId>
12
+    <artifactId>SmartArbitrate</artifactId>
13
+    <version>1.1.0</version>
13
 
14
 
14
     <description>
15
     <description>
15
         web服务入口
16
         web服务入口
94
                 </configuration>   
95
                 </configuration>   
95
            </plugin>   
96
            </plugin>   
96
         </plugins>
97
         </plugins>
97
-        <finalName>${project.artifactId}</finalName>
98
+        <finalName>${project.artifactId}-${project.version}</finalName>
98
     </build>
99
     </build>
99
 
100
 
100
 </project>
101
 </project>

+ 2
- 0
ruoyi-common/src/main/java/com/ruoyi/common/constant/CaseApplicationConstants.java ファイルの表示

6
 public class CaseApplicationConstants {
6
 public class CaseApplicationConstants {
7
     /** 立案申请 */
7
     /** 立案申请 */
8
     public static final int CASE_APPLICATION = 0;
8
     public static final int CASE_APPLICATION = 0;
9
+    /** 案件修改 */
10
+    public static final int CASE_EDIT = -1;
9
     /** 待立案审查 */
11
     /** 待立案审查 */
10
     public static final int CASE_CHECK = 1;
12
     public static final int CASE_CHECK = 1;
11
     /** 待缴费 */
13
     /** 待缴费 */

+ 2
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java ファイルの表示

1419
         // 异步新增案件日志
1419
         // 异步新增案件日志
1420
         ThreadPoolUtil.execute(() -> {
1420
         ThreadPoolUtil.execute(() -> {
1421
             try {
1421
             try {
1422
+                //新增案件日志记录
1423
+                insertCaseLog(caseApplication.getId(), CaseApplicationConstants.CASE_EDIT, "修改案件信息");
1422
                 caseApplication.setCaseAppliId(caseApplication.getId());
1424
                 caseApplication.setCaseAppliId(caseApplication.getId());
1423
                 caseApplication.setCaseLogId(IdWorkerUtil.getId());
1425
                 caseApplication.setCaseLogId(IdWorkerUtil.getId());
1424
                 int insertRow = caseApplicationLogMapper.insert(caseApplication);
1426
                 int insertRow = caseApplicationLogMapper.insert(caseApplication);