bugfix : fast || high

This commit is contained in:
徐佩
2024-12-01 16:32:51 +08:00
parent a237b4041d
commit b836e7fd67
2 changed files with 12 additions and 1 deletions

View File

@@ -29,12 +29,15 @@ public class GenerateToPythonDTO {
private String svg;
public GenerateToPythonDTO(String tasks_id, String prompt, String image_url, String mode, String category, String gender) {
private String version;
public GenerateToPythonDTO(String tasks_id, String prompt, String image_url, String mode, String category, String gender, String version) {
this.image_url = image_url;
this.category = category;
this.prompt = prompt;
this.mode = mode;
this.tasks_id = tasks_id;
this.gender = gender;
this.version = version;
}
}