提交 5d9ae236 authored 作者: chaoyanjun's avatar chaoyanjun

--no commit message

上级 e15084bd
......@@ -2,6 +2,7 @@ package com.zrqx.sysuser.bg.mapper.footer;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import com.zrqx.core.mapper.BaseMapper;
......@@ -21,4 +22,12 @@ public interface FooterMapper extends BaseMapper<Footer> {
+ "</script>")
List<FooterVo> page();
@Select("<script>"
+ " select f.*,c.name columnName from "
+ " sys_footer f left join sys_footer_column c "
+ " on f.columnId = c.id "
+ " where 1=1 "
+ " eq(f.id,id)"
+ "</script>")
FooterVo selectById(@Param("id") Integer oid);
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论