Commit 335220f7 authored by Quxl's avatar Quxl

x

parent 43cc487f
...@@ -19,7 +19,7 @@ public class LogServiceImpl implements LogService { ...@@ -19,7 +19,7 @@ public class LogServiceImpl implements LogService {
@Override @Override
public List<Map<String, Object>> queryLogList(String type, Page page) { public List<Map<String, Object>> queryLogList(String type, Page page) {
return jdbcTemplate.limit("select l.*, le.ext from fc_log l left join fc_log_ext le on le.path = l.path" + (StringUtil.isNotBlank(type) ? " where l.type = '" + type.toUpperCase() + "'" : ""), page); return jdbcTemplate.limit("select l.*, le.ext from fc_logs l left join fc_logs_ext le on le.path = l.path" + (StringUtil.isNotBlank(type) ? " where l.type = '" + type.toUpperCase() + "'" : ""), page);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment