177 lines
4.7 KiB
C#
177 lines
4.7 KiB
C#
// <auto-generated />
|
|
//
|
|
// To parse this JSON data, add NuGet 'Newtonsoft.Json' then do:
|
|
//
|
|
// using Model;
|
|
//
|
|
// var response = Response.FromJson(jsonString);
|
|
|
|
|
|
namespace Model
|
|
{
|
|
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
/// <summary>
|
|
/// 数据结果对象
|
|
/// </summary>
|
|
public partial class IDPPreRunData
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public string id { get; set; }
|
|
/// <summary>
|
|
/// categoryName
|
|
/// </summary>
|
|
[JsonProperty("categoryName")]
|
|
public string categoryName { get; set; }
|
|
/// <summary>
|
|
/// tag
|
|
/// </summary>
|
|
[JsonProperty("tag")]
|
|
public string tag { get; set; }
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string name { get; set; }
|
|
/// <summary>
|
|
/// parentId
|
|
/// </summary>
|
|
[JsonProperty("parentId")]
|
|
public string parentId { get; set; }
|
|
/// <summary>
|
|
/// projectId
|
|
/// </summary>
|
|
[JsonProperty("projectId")]
|
|
public string projectId { get; set; }
|
|
/// <summary>
|
|
/// wbsCode
|
|
/// </summary>
|
|
[JsonProperty("wbsCode")]
|
|
public string wbsCode { get; set; }
|
|
/// <summary>
|
|
/// itemType
|
|
/// </summary>
|
|
[JsonProperty("itemType")]
|
|
public string itemType { get; set; }
|
|
/// <summary>
|
|
/// versionId
|
|
/// </summary>
|
|
[JsonProperty("versionId")]
|
|
public string versionId { get; set; }
|
|
/// <summary>
|
|
/// fileCode
|
|
/// </summary>
|
|
[JsonProperty("fileCode")]
|
|
public string fileCode { get; set; }
|
|
/// <summary>
|
|
/// projectCode
|
|
/// </summary>
|
|
[JsonProperty("projectCode")]
|
|
public string projectCode { get; set; }
|
|
/// <summary>
|
|
/// workItemCode
|
|
/// </summary>
|
|
[JsonProperty("workItemCode")]
|
|
public string workItemCode { get; set; }
|
|
/// <summary>
|
|
/// tagnumber
|
|
/// </summary>
|
|
[JsonProperty("tagnumber")]
|
|
public string tagnumber { get; set; }
|
|
/// <summary>
|
|
/// sequence
|
|
/// </summary>
|
|
[JsonProperty("sequence")]
|
|
public string sequence { get; set; }
|
|
/// <summary>
|
|
/// version
|
|
/// </summary>
|
|
[JsonProperty("version")]
|
|
public string version { get; set; }
|
|
/// <summary>
|
|
/// createTime
|
|
/// </summary>
|
|
[JsonProperty("createTime")]
|
|
public DateTime? createTime { get; set; }
|
|
/// <summary>
|
|
/// updateTime
|
|
/// </summary>
|
|
[JsonProperty("updateTime")]
|
|
public DateTime? updateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回数据属性对象
|
|
/// </summary>
|
|
[JsonProperty("properties")]
|
|
public System.Collections.Generic.List<Property> properties { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 数据属性对象
|
|
/// </summary>
|
|
public partial class Property
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public string id { get; set; }
|
|
/// <summary>
|
|
/// propertyName
|
|
/// </summary>
|
|
[JsonProperty("propertyName")]
|
|
public string propertyName { get; set; }
|
|
/// <summary>
|
|
/// propertyValue
|
|
/// </summary>
|
|
[JsonProperty("propertyValue")]
|
|
public string propertyValue { get; set; }
|
|
/// <summary>
|
|
/// unit
|
|
/// </summary>
|
|
[JsonProperty("unit")]
|
|
public string unit { get; set; }
|
|
///// <summary>
|
|
///// createTime
|
|
///// </summary>
|
|
//[JsonProperty("createTime")]
|
|
//public DateTime? createTime { get; set; }
|
|
///// <summary>
|
|
///// updateTime
|
|
///// </summary>
|
|
//[JsonProperty("updateTime")]
|
|
//public DateTime? updateTime { get; set; }
|
|
///// <summary>
|
|
///// pwiItemId
|
|
///// </summary>
|
|
//[JsonProperty("pwiItemId")]
|
|
//public string pwiItemId { get; set; }
|
|
///// <summary>
|
|
///// versionId
|
|
///// </summary>
|
|
//[JsonProperty("versionId")]
|
|
//public string versionId { get; set; }
|
|
///// <summary>
|
|
///// ownerItemId
|
|
///// </summary>
|
|
//[JsonProperty("ownerItemId")]
|
|
//public string ownerItemId { get; set; }
|
|
}
|
|
|
|
|
|
public partial class IDPPreRunData
|
|
{
|
|
public static IDPPreRunData FromJson(string json)
|
|
{
|
|
return JsonConvert.DeserializeObject<IDPPreRunData>(json, Model.Converter.Settings);
|
|
}
|
|
}
|
|
|
|
}
|
|
|