// // // To parse this JSON data, add NuGet 'Newtonsoft.Json' then do: // // using Model; // // var response = Response.FromJson(jsonString); namespace Model { using System; using System.Collections.Generic; using Newtonsoft.Json; /// /// OA设计图纸接收参数 /// public partial class OADesignDrawingData { /// /// OA设计图纸数据项集合 /// public List DataItems { get; set; } } /// /// 数据结果对象 /// public partial class OADesignDrawingDataItem { /// /// 数字档案馆RdpId /// [JsonProperty("RdpId")] public string RdpId { get; set; } /// /// 盖章前文件id /// [JsonProperty("fileid")] public string fileid { get; set; } /// /// 盖章后文件id /// [JsonProperty("upfileid")] public string upfileid { get; set; } /// /// 文件名称 /// [JsonProperty("maintitle")] public string maintitle { get; set; } /// /// 文件编号 /// [JsonProperty("doc_no")] public string doc_no { get; set; } /// /// 版次 /// [JsonProperty("bc")] public string bc { get; set; } /// /// 入库档案号 /// [JsonProperty("archnumber")] public string archnumber { get; set; } /// /// 档案室验收日期 /// [JsonProperty("sendtime")] public DateTime? sendtime { get; set; } /// /// 蓝图打印日期 /// [JsonProperty("printtime")] public DateTime? printtime { get; set; } /// /// 蓝图是否寄出(是、否) /// [JsonProperty("ifmail")] public string ifmail { get; set; } } }