|
@@ -0,0 +1,18 @@
|
|
|
|
+package api.common.pojo.param.project;
|
|
|
|
+
|
|
|
|
+import lombok.Getter;
|
|
|
|
+import lombok.Setter;
|
|
|
|
+import lombok.experimental.Accessors;
|
|
|
|
+
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+@Getter
|
|
|
|
+@Setter
|
|
|
|
+@Accessors(chain = true)
|
|
|
|
+public class AddOrUpdateMultiSimulationSceneCarParam {
|
|
|
|
+ private String mapId;
|
|
|
|
+
|
|
|
|
+ private String sceneId;
|
|
|
|
+
|
|
|
|
+ private List<MultiSimulationSceneCarParam> paramList;
|
|
|
|
+}
|