提交 999ba2a8 authored 作者: renjiancai's avatar renjiancai

--no commit message

上级 93dd2c3f
......@@ -30,8 +30,14 @@ public interface AuthorLibraryMapper extends BaseMapper<AuthorLibrary> {
+ "<if test='form.institutionName != null and form.institutionName != \"\"'> "
+ " AND a.institutionName like #{form.institutionName} "
+ "</if> "
+ "<if test='form.diytypeCode != null and form.diytypeCode != \"\"'> "
+ " AND t.code like #{form.diytypeCode} "
+ "<if test='form.diyTypeCode != null and form.diyTypeCode != \"\"'>"
+ "and t.code like concat(#{form.diyTypeCode},'%') "
+ "</if>"
+ "<if test='form.diyTypeId != null and form.diyTypeId.size > 0'>"
+ "and t.dtId in "
+ " <foreach collection=\"form.diyTypeId\" index=\"index\" item=\"id\" open=\"(\" separator=\",\" close=\")\">"
+ "#{id}"
+ "</foreach>"
+ "</if>"
+ "<if test='form.beginTime != null and form.beginTime != \"\"'> "
+ " AND a.createTime &gt;= #{form.beginTime} "
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论