|
@@ -6,6 +6,7 @@ import com.google.gson.JsonObject;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
@@ -15,7 +16,7 @@ import lombok.Data;
|
|
|
@Data
|
|
|
public class SceneQueueDTO {
|
|
|
|
|
|
- private String sceneCode;
|
|
|
+ private String sceneCode;
|
|
|
|
|
|
@ApiModelProperty(value = "判断是否为slam场景,深光和深时 以前的场景都是4" +
|
|
|
"typedef enum SceneLocation {\n" +
|
|
@@ -35,16 +36,16 @@ public class SceneQueueDTO {
|
|
|
|
|
|
@ApiModelProperty(value = "计算完成时间")
|
|
|
private Date algorithmTime;
|
|
|
- private Date createrTime;
|
|
|
-
|
|
|
- private String phoneNum;
|
|
|
+ private Date createTime;
|
|
|
|
|
|
- private String snCode;
|
|
|
+ private String phoneNum;
|
|
|
+ private Integer userId;
|
|
|
+ private String snCode;
|
|
|
|
|
|
//0-计算中 1-计算成功 -1-计算失败
|
|
|
private int status;
|
|
|
|
|
|
- private String sceneName;
|
|
|
+ private String sceneName;
|
|
|
|
|
|
private String pwd;
|
|
|
|