1每天夜间获取OA系统项目设计图纸数据接口调整
This commit is contained in:
@@ -176,6 +176,11 @@ namespace Model
|
||||
[JsonProperty("fileid")]
|
||||
public string fileid { get; set; }
|
||||
/// <summary>
|
||||
/// 文件名称
|
||||
/// </summary>
|
||||
[JsonProperty("filename")]
|
||||
public string filename { get; set; }
|
||||
/// <summary>
|
||||
/// 盖章后文件id
|
||||
/// </summary>
|
||||
[JsonProperty("upfileid")]
|
||||
@@ -196,6 +201,11 @@ namespace Model
|
||||
[JsonProperty("bc")]
|
||||
public string bc { get; set; }
|
||||
/// <summary>
|
||||
/// 保密类型
|
||||
/// </summary>
|
||||
[JsonProperty("classificationLevel")]
|
||||
public string classificationLevel { get; set; }
|
||||
/// <summary>
|
||||
/// 入库档案号
|
||||
/// </summary>
|
||||
[JsonProperty("archnumber")]
|
||||
@@ -216,5 +226,13 @@ namespace Model
|
||||
[JsonProperty("ifmail")]
|
||||
public string ifmail { get; set; }
|
||||
}
|
||||
|
||||
public partial class OADesignDrawingDataItems
|
||||
{
|
||||
public static List<OADesignDrawingDataItem> FromJson(string json)
|
||||
{
|
||||
return JsonConvert.DeserializeObject<List<OADesignDrawingDataItem>>(json, Model.Converter.Settings);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user