SGGL_JT/SUBQHSE/Model/CNCEC_MasterData/MasterData_Post.cs

79 lines
2.0 KiB
C#

// <auto-generated />
//
using System;
using System.Collections.Generic;
using System.Globalization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Model
{
public partial class MasterDataPostList
{
[JsonProperty("code")]
public int Code { get; set; }
[JsonProperty("data")]
public System.Collections.Generic.List<Datum_Post> Data { get; set; }
[JsonProperty("message")]
public string Message { get; set; }
}
public partial class Datum_Post
{
[JsonProperty("CNCEC_VIEW_STATION_XXB")]
public System.Collections.Generic.List<CncecViewStationXxb_Post> CncecViewStationXxb { get; set; }
}
public partial class CncecViewStationXxb_Post
{
[JsonProperty("ad_dep_code")]
public string AdDepCode { get; set; }
[JsonProperty("ad_dep_name")]
public string AdDepName { get; set; }
[JsonProperty("ad_org_code")]
public string AdOrgCode { get; set; }
[JsonProperty("ad_org_name")]
public string AdOrgName { get; set; }
[JsonProperty("post_code")]
public string PostCode { get; set; }
[JsonProperty("post_name")]
public string PostName { get; set; }
[JsonProperty("SYS_CREATEDATE_")]
public string SysCreatedate { get; set; }
[JsonProperty("SYS_CREATOR_")]
public string SysCreator { get; set; }
[JsonProperty("SYS_ID_")]
public string SysId { get; set; }
[JsonProperty("SYS_MENDER_")]
public string SysMender { get; set; }
[JsonProperty("SYS_MODIFYDATE_")]
public string SysModifydate { get; set; }
[JsonProperty("SYS_STATE_")]
public int SysState { get; set; }
}
public partial class MasterDataPostList
{
public static MasterDataPostList FromJson(string json)
{
return JsonConvert.DeserializeObject<MasterDataPostList>(json, Model.Converter.Settings);
}
}
}