fix(action): correct params type in related DTOs

This commit is contained in:
2025-12-19 22:57:34 +08:00
parent 128592e23c
commit ed042cfffa
2 changed files with 2 additions and 2 deletions

View File

@@ -7,5 +7,5 @@ import java.util.Map;
@Data @Data
public class ExtractorResult { public class ExtractorResult {
private boolean ok; private boolean ok;
private Map<String, String> params; private Map<String, Object> params;
} }

View File

@@ -12,7 +12,7 @@ public class RepairerInput {
private String userId; private String userId;
private List<Message> recentMessages; private List<Message> recentMessages;
private Map<String, String> params; private Map<String, Object> params;
private String actionDescription; private String actionDescription;
private List<HistoryAction> historyActionResults; private List<HistoryAction> historyActionResults;
private PhaserRecord phaserRecord; private PhaserRecord phaserRecord;