|
@@ -4,6 +4,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -37,11 +38,15 @@ public class ProjectAddDto implements Serializable {
|
|
|
private String cooperation;
|
|
|
|
|
|
|
|
|
+// @ApiModelProperty(value = "项目网址")
|
|
|
+// private Map<String, String> websites;
|
|
|
+
|
|
|
@ApiModelProperty(value = "项目网址")
|
|
|
- private Map<String, String> websites;
|
|
|
+ private List<UrlDto> websites;
|
|
|
|
|
|
@ApiModelProperty(value = "三维场景")
|
|
|
- private Map<String, String> scenes;
|
|
|
+ private List<UrlDto> scenes;
|
|
|
+// private Map<String, String> scenes;
|
|
|
|
|
|
@ApiModelProperty(value = "资料文档ids, 多个以逗号分隔")
|
|
|
private String docIds;
|