Commit fd0c55a7 authored by alex yao's avatar alex yao

fix: 获取【记忆变量】列表,字段排序

parent de96932b
......@@ -367,7 +367,7 @@ public class AgentApplicationInfoRestImpl implements AgentApplicationInfoRest {
result.add(valueMemoryDto);
}
}
return result;
return result.stream().sorted(Comparator.comparing(AgentApplicationValueMemoryDto::getKey)).collect(Collectors.toList());
}
@Override
......
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