mirror of
https://github.com/slhaf/Partner.git
synced 2026-05-12 16:53:04 +08:00
fix(action): correct params type in related DTOs
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user