OA用印自动同步,完善确认书来源标识
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user