This commit is contained in:
2025-09-01 17:21:34 +08:00
parent 465a5c91bf
commit d4d0af0c58
23 changed files with 383 additions and 2083 deletions

View File

@@ -0,0 +1,16 @@

using MyCode.Project.Domain.Message.Response.K3Cloud.Model;
namespace MyCode.Project.Domain.Message.Response.K3Cloud
{
/// <summary>
/// 金蝶云星空返回类
/// </summary>
public class KingdeeResult<T>
{
/// <summary>
/// 返回对象
/// </summary>
public K3CloudResult<T> Result { get; set; }
}
}