fix: 字段

This commit is contained in:
2024-05-31 10:14:11 +08:00
parent ac608ed2ca
commit 179b3eac45

View File

@@ -612,7 +612,7 @@ public class SlitterServiceImpl implements SlitterService {
JSONArray jsonArray = list.stream() JSONArray jsonArray = list.stream()
.map(item -> { .map(item -> {
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
jsonObject.put("label", item.getPoint_code()); jsonObject.put("text", item.getPoint_code());
jsonObject.put("value", item.getExt_code()); jsonObject.put("value", item.getExt_code());
return jsonObject; return jsonObject;
}) })