Sfoglia il codice sorgente

分页日志记录修改

wangchao 4 anni fa
parent
commit
898934c72b

+ 3 - 2
security-protection-service/src/main/java/com/ai/bss/security/protection/service/impl/AiIdenLogManageServiceImpl.java

74
			if (StringUtils.isNotEmpty(idenResultArr)) {
74
			if (StringUtils.isNotEmpty(idenResultArr)) {
75
				List<Map<String, String>> idenResultList = JSONArray.parseObject(idenResultArr, List.class);
75
				List<Map<String, String>> idenResultList = JSONArray.parseObject(idenResultArr, List.class);
76
				if (!CollectionUtils.isEmpty(idenResultList)) {
76
				if (!CollectionUtils.isEmpty(idenResultList)) {
77
					dataMap.putAll(idenResultList.get(0));
77
					dataMap.put("idenResult", idenResultList.get(0));
78
					//dataMap.putAll(idenResultList.get(0));
78
				}
79
				}
79
			}
80
			}
80
81
81
			// 员工信息
82
			// 员工信息
82
			if (dataMap.get("relateEmployeeRoleId") == null) {
83
			if (dataMap.get("relateEmployeeRoleId") != null) {
83
				long relateEmployeeRoleId = Long.parseLong(String.valueOf(dataMap.get("relateEmployeeRoleId")));
84
				long relateEmployeeRoleId = Long.parseLong(String.valueOf(dataMap.get("relateEmployeeRoleId")));
84
85
85
				EmployeeDto employeeDto = new EmployeeDto();
86
				EmployeeDto employeeDto = new EmployeeDto();