修复SQL异常
This commit is contained in:
parent
061bda0258
commit
a1643ccff6
|
|
@ -32,7 +32,8 @@ public interface ColumnMapper {
|
||||||
"<if test=\"type != null\">" +
|
"<if test=\"type != null\">" +
|
||||||
", #{type}" +
|
", #{type}" +
|
||||||
"</if>" +
|
"</if>" +
|
||||||
")")
|
")" +
|
||||||
|
"</script>")
|
||||||
void saveDraftColumnRel(@Param("draftId") Long draftId, @Param("columnId") Long columnId, @Param("type") Integer type);
|
void saveDraftColumnRel(@Param("draftId") Long draftId, @Param("columnId") Long columnId, @Param("type") Integer type);
|
||||||
|
|
||||||
@Insert("<script>" +
|
@Insert("<script>" +
|
||||||
|
|
@ -44,7 +45,8 @@ public interface ColumnMapper {
|
||||||
"<if test=\"type != null\">" +
|
"<if test=\"type != null\">" +
|
||||||
", #{type}" +
|
", #{type}" +
|
||||||
"</if>" +
|
"</if>" +
|
||||||
")")
|
")" +
|
||||||
|
"</script>")
|
||||||
void saveNewsColumnRel(@Param("newsId") Long newsId, @Param("columnId") Long columnId, @Param("type") Integer type);
|
void saveNewsColumnRel(@Param("newsId") Long newsId, @Param("columnId") Long columnId, @Param("type") Integer type);
|
||||||
|
|
||||||
@Results({
|
@Results({
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue