fix 修复系统配置表 sql符号错误问题

This commit is contained in:
疯狂的狮子li 2021-05-13 22:44:30 +08:00
parent 7f73591742
commit 9c95c93630
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class SysConfigServiceImpl extends ServiceImpl<SysConfigMapper, SysConfig
"date_format(create_time,'%y%m%d') >= date_format(#{0},'%y%m%d')",
params.get("beginTime"))
.apply(Validator.isNotEmpty(params.get("endTime")),
"date_format(create_time,'%y%m%d') >= date_format(#{0},'%y%m%d')",
"date_format(create_time,'%y%m%d') <= date_format(#{0},'%y%m%d')",
params.get("endTime"));
return PageUtils.buildDataInfo(page(PageUtils.buildPage(), lqw));
}