修复SQL异常
This commit is contained in:
parent
061bda0258
commit
a1643ccff6
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Reference in New Issue