。。。

This commit is contained in:
wangliwen 2022-06-22 10:51:42 +08:00
parent aaeda5f9bd
commit 5333b18711
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class SysNoticeServiceImpl extends CrudServiceImpl<SysNoticeDao, SysNotic
wrapper.eq(StringUtils.isNotBlank((String) params.get("type")), "type", (String) params.get("type")); wrapper.eq(StringUtils.isNotBlank((String) params.get("type")), "type", (String) params.get("type"));
break; break;
case "from": case "from":
wrapper.eq(StringUtils.isNotBlank((String) params.get("from")), "from", (String) params.get("from")); wrapper.eq(StringUtils.isNotBlank((String) params.get("from")), "`from`", (String) params.get("from"));
break; break;
} }
}); });