|
@@ -1512,7 +1512,7 @@ public class TaskController extends BladeController {
|
|
task -> task));
|
|
task -> task));
|
|
}
|
|
}
|
|
//所有满足条件的日志 转map
|
|
//所有满足条件的日志 转map
|
|
- String logQuery = "select business_id,create_user_name ,create_time, operation_type, save_data from u_operation_log where operation_content like '%废除%'";
|
|
|
|
|
|
+ String logQuery = "select business_id,create_user_name ,create_time, operation_type, save_data from u_operation_log where operation_type in (6,9,26,61,62)";
|
|
List<OperationLog> operationLogs = jdbcTemplate.query(logQuery, new BeanPropertyRowMapper<>(OperationLog.class));
|
|
List<OperationLog> operationLogs = jdbcTemplate.query(logQuery, new BeanPropertyRowMapper<>(OperationLog.class));
|
|
if(ObjectUtil.isNotEmpty(operationLogs)){
|
|
if(ObjectUtil.isNotEmpty(operationLogs)){
|
|
operationLogMap = operationLogs.stream().collect(Collectors.groupingBy(OperationLog::getBusinessId));
|
|
operationLogMap = operationLogs.stream().collect(Collectors.groupingBy(OperationLog::getBusinessId));
|