Skip to content
Snippets Groups Projects

Resolve "Test AMQP"

3 files
+ 9
1
Compare changes
  • Side-by-side
  • Inline

Files

@@ -25,6 +25,11 @@ public class TableCreateDto {
@ApiModelProperty(name = "table description", required = true, example = "Predict next-day rain in Australia", notes = "https://www.kaggle.com/jsphyg/weather-dataset-rattle-package")
private String description;
@NotBlank
@ApiModelProperty(name = "table topic", required = true, example = "Weather Data")
private String topic;
@NotNull
@ApiModelProperty(name = "table columns", required = true, example = "[{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"id\",\"nullAllowed\":false,\"primaryKey\":true,\"type\":\"NUMBER\",\"unique\":true,\"enumValues\":[]},{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"Date\",\"nullAllowed\":true,\"primaryKey\":false,\"type\":\"DATE\",\"unique\":false,\"enumValues\":[]},{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"Location\",\"nullAllowed\":true,\"primaryKey\":false,\"type\":\"STRING\",\"unique\":false,\"enumValues\":[]},{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"MinTemp\",\"nullAllowed\":true,\"primaryKey\":false,\"type\":\"NUMBER\",\"unique\":false,\"enumValues\":[]},{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"MaxTemp\",\"nullAllowed\":true,\"primaryKey\":false,\"type\":\"NUMBER\",\"unique\":false,\"enumValues\":[]},{\"checkExpression\":null,\"foreignKey\":null,\"name\":\"Rainfall\",\"nullAllowed\":true,\"primaryKey\":false,\"type\":\"NUMBER\",\"unique\":false,\"enumValues\":[]}]")
private ColumnCreateDto[] columns;
Loading