216 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			216 lines
		
	
	
		
			5.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 System.Collections.Generic;
 | |
|     using Newtonsoft.Json;
 | |
| 
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 蓝图寄出数据结果对象
 | |
|     /// </summary>
 | |
|     public partial class BlueprintInfoItem
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 主数据项目编号
 | |
|         /// </summary>
 | |
|         [JsonProperty("item_id")]
 | |
|         public string item_id { get; set; }
 | |
|         /// <summary>
 | |
|         /// 蓝图寄出时间
 | |
|         /// </summary>
 | |
|         [JsonProperty("modifiedTime")]
 | |
|         public DateTime? modifiedTime { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件编号
 | |
|         /// </summary>
 | |
|         [JsonProperty("folderNo")]
 | |
|         public string folderNo { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件版次
 | |
|         /// </summary>
 | |
|         [JsonProperty("isUpgrade")]
 | |
|         public string isUpgrade { get; set; }
 | |
| 
 | |
|         /***
 | |
|          
 | |
|         /// <summary>
 | |
|         /// 文件类型
 | |
|         /// </summary>
 | |
|         [JsonProperty("fileType")]
 | |
|         public string fileType { get; set; }
 | |
|         /// <summary>
 | |
|         ///寄出人
 | |
|         /// </summary>
 | |
|         [JsonProperty("senderName")]
 | |
|         public string senderName { get; set; }
 | |
|         /// <summary>
 | |
|         ///接收地址
 | |
|         /// </summary>
 | |
|         [JsonProperty("receiverAddress")]
 | |
|         public string receiverAddress { get; set; }
 | |
|         /// <summary>
 | |
|         ///接收人
 | |
|         /// </summary>
 | |
|         [JsonProperty("receiverName")]
 | |
|         public string receiverName { get; set; }
 | |
|         /// <summary>
 | |
|         ///接收类型
 | |
|         /// </summary>
 | |
|         [JsonProperty("receiverType")]
 | |
|         public string receiverType { get; set; }
 | |
|         /// <summary>
 | |
|         ///接收单位
 | |
|         /// </summary>
 | |
|         [JsonProperty("receiverUnit")]
 | |
|         public string receiverUnit { get; set; }
 | |
|         
 | |
|         ***/
 | |
|     }
 | |
| 
 | |
|     public partial class BlueprintInfoItems
 | |
|     {
 | |
|         public static List<BlueprintInfoItem> FromJson(string json)
 | |
|         {
 | |
|             return JsonConvert.DeserializeObject<List<BlueprintInfoItem>>(json, Model.Converter.Settings);
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 蓝图寄出数据结果对象
 | |
|     /// </summary>
 | |
|     public partial class PrintInfoItem
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 主数据项目编号
 | |
|         /// </summary>
 | |
|         [JsonProperty("item_id")]
 | |
|         public string item_id { get; set; }
 | |
|         /// <summary>
 | |
|         /// 蓝图寄出时间
 | |
|         /// </summary>
 | |
|         [JsonProperty("doc_printtime")]
 | |
|         public DateTime? doc_printtime { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件编号
 | |
|         /// </summary>
 | |
|         [JsonProperty("folderNo")]
 | |
|         public string folderNo { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件版次
 | |
|         /// </summary>
 | |
|         [JsonProperty("isUpgrade")]
 | |
|         public string isUpgrade { get; set; }
 | |
| 
 | |
|         /***
 | |
|          
 | |
|         /// <summary>
 | |
|         /// recorder
 | |
|         /// </summary>
 | |
|         [JsonProperty("recorder")]
 | |
|         public string recorder { get; set; }
 | |
|         /// <summary>
 | |
|         ///item_name
 | |
|         /// </summary>
 | |
|         [JsonProperty("item_name")]
 | |
|         public string item_name { get; set; }
 | |
|         /// <summary>
 | |
|         ///folder_name
 | |
|         /// </summary>
 | |
|         [JsonProperty("folder_name")]
 | |
|         public string folder_name { get; set; }
 | |
|         /// <summary>
 | |
|         ///createTime
 | |
|         /// </summary>
 | |
|         [JsonProperty("createTime")]
 | |
|         public DateTime? createTime { get; set; }
 | |
|         /// <summary>
 | |
|         ///isPrint
 | |
|         /// </summary>
 | |
|         [JsonProperty("isPrint")]
 | |
|         public string isPrint { get; set; }
 | |
|         /// <summary>
 | |
|         ///project_id
 | |
|         /// </summary>
 | |
|         [JsonProperty("project_id")]
 | |
|         public string project_id { get; set; }
 | |
|         
 | |
|         ***/
 | |
|     }
 | |
|     public partial class PrintInfoItems
 | |
|     {
 | |
|         public static List<PrintInfoItem> FromJson(string json)
 | |
|         {
 | |
|             return JsonConvert.DeserializeObject<List<PrintInfoItem>>(json, Model.Converter.Settings);
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 数据对象
 | |
|     /// </summary>
 | |
|     public partial class OADesignDrawingDataItem
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 数字档案馆RdpId
 | |
|         /// </summary>
 | |
|         [JsonProperty("RdpId")]
 | |
|         public string RdpId { get; set; }
 | |
|         /// <summary>
 | |
|         /// 盖章前文件id
 | |
|         /// </summary>
 | |
|         [JsonProperty("fileid")]
 | |
|         public string fileid { get; set; }
 | |
|         /// <summary>
 | |
|         /// 盖章后文件id
 | |
|         /// </summary>
 | |
|         [JsonProperty("upfileid")]
 | |
|         public string upfileid { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件名称
 | |
|         /// </summary>
 | |
|         [JsonProperty("maintitle")]
 | |
|         public string maintitle { get; set; }
 | |
|         /// <summary>
 | |
|         /// 文件编号
 | |
|         /// </summary>
 | |
|         [JsonProperty("doc_no")]
 | |
|         public string doc_no { get; set; }
 | |
|         /// <summary>
 | |
|         /// 版次
 | |
|         /// </summary>
 | |
|         [JsonProperty("bc")]
 | |
|         public string bc { get; set; }
 | |
|         /// <summary>
 | |
|         /// 入库档案号
 | |
|         /// </summary>
 | |
|         [JsonProperty("archnumber")]
 | |
|         public string archnumber { get; set; }
 | |
|         /// <summary>
 | |
|         /// 档案室验收日期
 | |
|         /// </summary>
 | |
|         [JsonProperty("sendtime")]
 | |
|         public DateTime? sendtime { get; set; }
 | |
|         /// <summary>
 | |
|         /// 蓝图打印日期
 | |
|         /// </summary>
 | |
|         [JsonProperty("printtime")]
 | |
|         public DateTime? printtime { get; set; }
 | |
|         /// <summary>
 | |
|         /// 蓝图是否寄出(是、否)
 | |
|         /// </summary>
 | |
|         [JsonProperty("ifmail")]
 | |
|         public string ifmail { get; set; }
 | |
|     }
 | |
| }
 | |
| 
 |