修复系统参数在没审核时也生效的问题

This commit is contained in:
2025-07-28 11:57:11 +08:00
parent 1e85ccf537
commit 855706e9ca
10 changed files with 24 additions and 34 deletions

View File

@@ -0,0 +1,25 @@
namespace MyCode.Project.Domain.Message.Response.KingDee.K3Result.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; }
}
}