|
@@ -1,6 +1,7 @@
|
|
using System;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
+using UnityEngine.Serialization;
|
|
|
|
|
|
|
|
|
|
public class HttpGetData
|
|
public class HttpGetData
|
|
@@ -334,34 +335,55 @@ public class CharData_water
|
|
[Serializable]
|
|
[Serializable]
|
|
public class B08_TaskListInfoData
|
|
public class B08_TaskListInfoData
|
|
{
|
|
{
|
|
- public B08_TaskListInfo data;
|
|
|
|
-}
|
|
|
|
-[Serializable]
|
|
|
|
-public class B08_TaskListInfo
|
|
|
|
-{
|
|
|
|
- public B08_TaskInfoData[] list;
|
|
|
|
- public int type;
|
|
|
|
|
|
+ public B08_TaskInfoData[] data;
|
|
}
|
|
}
|
|
|
|
+
|
|
[Serializable]
|
|
[Serializable]
|
|
public class B08_TaskInfoData
|
|
public class B08_TaskInfoData
|
|
{
|
|
{
|
|
- public string task_id;
|
|
|
|
- public string type;
|
|
|
|
|
|
+ public string xjId;
|
|
|
|
+ public string fanganId;
|
|
|
|
+ public string projectId;
|
|
|
|
+ public string xunjianScope;
|
|
|
|
+ public int taskExecutor;
|
|
|
|
+ [FormerlySerializedAs("type")] public string fanganName;
|
|
public string xunjian_scope;
|
|
public string xunjian_scope;
|
|
public string status;
|
|
public string status;
|
|
public string start_time;
|
|
public string start_time;
|
|
- public B08_TaskItems[] task_items;
|
|
|
|
|
|
+ public string finishedTime;
|
|
|
|
+ [FormerlySerializedAs("task_items")] public B08_TaskItems[] items;
|
|
}
|
|
}
|
|
[Serializable]
|
|
[Serializable]
|
|
public class B08_TaskItems
|
|
public class B08_TaskItems
|
|
{
|
|
{
|
|
- public string elevation;//高度
|
|
|
|
- public string item_id;
|
|
|
|
- public string img_path;
|
|
|
|
|
|
+ [FormerlySerializedAs("item_id")] public string xjItemId;
|
|
|
|
+ public string xjId;
|
|
|
|
+ public string faItemId;
|
|
|
|
+
|
|
|
|
+ public B08_TaskItemFiles[] files;
|
|
|
|
+
|
|
public string latitude;//维度
|
|
public string latitude;//维度
|
|
- public string item_name;
|
|
|
|
public string longitude;//经度
|
|
public string longitude;//经度
|
|
|
|
+
|
|
|
|
+ public string status;
|
|
|
|
+
|
|
|
|
+ public string startTime;
|
|
|
|
+ public string finishedTime;
|
|
|
|
+
|
|
|
|
+ [FormerlySerializedAs("item_name")] public string faItemName;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+[Serializable]
|
|
|
|
+public class B08_TaskItemFiles
|
|
|
|
+{
|
|
|
|
+ public string fileId;
|
|
|
|
+ public int fileCategoryId;
|
|
|
|
+ public string fileName;
|
|
|
|
+ public string mimeType;
|
|
|
|
+ public string filePath;
|
|
|
|
+ public int folderId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
#endregion
|
|
#endregion
|