fix: 手持下拉框

This commit is contained in:
2024-06-28 14:59:21 +08:00
parent e17eed36ca
commit 66212b6ed4

View File

@@ -932,8 +932,8 @@ public class SlitterServiceImpl implements SlitterService {
JSONArray jsonArray = list.stream()
.map(item -> {
JSONObject jsonObject = new JSONObject();
jsonObject.put("text", item.getPoint_code());
jsonObject.put("value", item.getPoint_name());
jsonObject.put("text", item.getPoint_name());
jsonObject.put("value", item.getPoint_code());
return jsonObject;
})
.collect(Collectors.toCollection(JSONArray::new));