IDP质量设计图纸管理
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
// <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>
|
||||
/// OA设计图纸接收参数
|
||||
/// </summary>
|
||||
public partial class OADesignDrawingData
|
||||
{
|
||||
/// <summary>
|
||||
/// OA设计图纸数据项集合
|
||||
/// </summary>
|
||||
public List<OADesignDrawingDataItem> DataItems
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
|
||||
/// <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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user