|
|
@@ -124,4 +124,12 @@ public interface StoreCommentAppealMapper extends BaseMapper<StoreCommentAppeal>
|
|
|
void updateByRecordId(@Param("recordId") Integer recordId,
|
|
|
@Param("appealStatus") Integer appealStatus,
|
|
|
@Param("finalResult") String finalResult);
|
|
|
+
|
|
|
+
|
|
|
+ @Update("UPDATE store_comment_appeal " +
|
|
|
+ "SET appeal_status = #{appealStatus}, final_result = #{finalResult} " +
|
|
|
+ "WHERE id = #{id}")
|
|
|
+ void updateByRecordIdNew(@Param("id") Integer id,
|
|
|
+ @Param("appealStatus") Integer appealStatus,
|
|
|
+ @Param("finalResult") String finalResult);
|
|
|
}
|