Commit 4ce4d032 by guojuxing

日志查询接口修改

parent 64696ab0
......@@ -203,7 +203,9 @@ public class MenuController {
LogSearchDTO searchParam = new LogSearchDTO();
searchParam.setEnterpriseId(String.valueOf(enterpriseId));
searchParam.setInterfaceName(search);
searchParam.setRelationId(Long.valueOf(menuId));
if (menuId != null) {
searchParam.setRelationId(Long.valueOf(menuId));
}
SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");
if (StringUtils.isNotBlank(startTime)) {
startTime = startTime + " 00:00:00";
......
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