对接IDP系统项目开车数据
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
namespace Model
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
/// <summary>
|
||||
@@ -136,6 +137,11 @@ namespace Model
|
||||
/// </summary>
|
||||
[JsonProperty("unit")]
|
||||
public string unit { get; set; }
|
||||
/// <summary>
|
||||
/// pwiItemId
|
||||
/// </summary>
|
||||
[JsonProperty("pwiItemId")]
|
||||
public string pwiItemId { get; set; }
|
||||
///// <summary>
|
||||
///// createTime
|
||||
///// </summary>
|
||||
@@ -147,11 +153,6 @@ namespace Model
|
||||
//[JsonProperty("updateTime")]
|
||||
//public DateTime? updateTime { get; set; }
|
||||
///// <summary>
|
||||
///// pwiItemId
|
||||
///// </summary>
|
||||
//[JsonProperty("pwiItemId")]
|
||||
//public string pwiItemId { get; set; }
|
||||
///// <summary>
|
||||
///// versionId
|
||||
///// </summary>
|
||||
//[JsonProperty("versionId")]
|
||||
@@ -166,9 +167,9 @@ namespace Model
|
||||
|
||||
public partial class IDPPreRunData
|
||||
{
|
||||
public static IDPPreRunData FromJson(string json)
|
||||
public static List<IDPPreRunData> FromJson(string json)
|
||||
{
|
||||
return JsonConvert.DeserializeObject<IDPPreRunData>(json, Model.Converter.Settings);
|
||||
return JsonConvert.DeserializeObject<List<IDPPreRunData>>(json, Model.Converter.Settings);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user