1每天夜间获取OA系统项目设计图纸数据接口调整

This commit is contained in:
2025-11-25 10:27:40 +08:00
parent 65d027e559
commit da6fb67fe0
5 changed files with 134 additions and 14 deletions
+18
View File
@@ -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);
}
}
}