OA用印自动同步,完善确认书来源标识

This commit is contained in:
锦麟 王
2026-04-16 15:12:39 +08:00
parent 8fc2f43d4d
commit e3d2feedb2
14 changed files with 458 additions and 5 deletions
+21
View File
@@ -1,3 +1,4 @@
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
@@ -61,4 +62,24 @@ namespace YLErp.Modules.TradeModule
public string annexId { get; set; }
public string annexName { get; set; }
}
/// <summary>
/// OA 审批状态查询响应模型(适配新查询接口 /gateway/oaflow/getRequestData
/// </summary>
public class OAStatusQueryResponse
{
public int code { get; set; }
public string status { get; set; }
public string msg { get; set; }
public List<OAFlowData> data { get; set; }
}
/// <summary>
/// OA 流程查询数据模型
/// </summary>
public class OAFlowData
{
public string requestId { get; set; }
public JObject flowInfos { get; set; }
}
}