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,25 @@
namespace MyCode.Project.Domain.Message.Response.K3Cloud.Model
{
/// <summary>
/// 成功实体
/// </summary>
public class K3CloudSuccessEntity
{
/// <summary>
/// 单据Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string Number { get; set; }
/// <summary>
/// 实体索引
/// </summary>
public int DIndex { get; set; }
/// <summary>
/// 分录Id
/// </summary>
public object EntryIds { get; set; }
}
}