修复SQL异常

This commit is contained in:
xpecya 2024-12-11 09:05:57 +08:00
parent 061bda0258
commit a1643ccff6
1 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,8 @@ public interface ColumnMapper {
"<if test=\"type != null\">" +
", #{type}" +
"</if>" +
")")
")" +
"</script>")
void saveDraftColumnRel(@Param("draftId") Long draftId, @Param("columnId") Long columnId, @Param("type") Integer type);
@Insert("<script>" +
@ -44,7 +45,8 @@ public interface ColumnMapper {
"<if test=\"type != null\">" +
", #{type}" +
"</if>" +
")")
")" +
"</script>")
void saveNewsColumnRel(@Param("newsId") Long newsId, @Param("columnId") Long columnId, @Param("type") Integer type);
@Results({