zhangchen 1 неделя назад
Родитель
Сommit
da92fe4b42

+ 1 - 2
alien-entity/src/main/java/shop/alien/mapper/StoreCommentAppealMapper.java

@@ -127,10 +127,9 @@ public interface StoreCommentAppealMapper extends BaseMapper<StoreCommentAppeal>
 
 
     @Update("UPDATE store_comment_appeal " +
-            "SET appeal_status = #{appealStatus}, final_result = #{finalResult}, appeal_ai_approval = #{appealAiApproval} " +
+            "SET appeal_status = #{appealStatus}, final_result = #{finalResult} " +
             "WHERE id = #{id}")
     void updateByRecordIdNew(@Param("id") Integer id,
                           @Param("appealStatus") Integer appealStatus,
-                          @Param("appealAiApproval") String appealAiApproval,
                           @Param("finalResult") String finalResult);
 }

+ 1 - 1
alien-store/src/main/java/shop/alien/store/service/StoreCommentAppealSupplementJobService.java

@@ -161,7 +161,7 @@ public class StoreCommentAppealSupplementJobService {
                 }
 
                 storeCommentAppealMapper.updateByRecordIdNew(appeal.getId(),
-                        updateAppeal.getAppealStatus(), updateAppeal.getAppealAiApproval(), updateAppeal.getFinalResult());
+                        updateAppeal.getAppealStatus(), updateAppeal.getFinalResult());
                 boolean merchantWins = merchantConfidence > userConfidence;
                 sendAppealResultNotifications(appeal, merchantWins);
             } catch (Exception e) {