This commit is contained in:
2025-07-14 20:39:36 +08:00
parent 995a8f115a
commit 97d3da3116
31 changed files with 2584 additions and 36 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.KingDee
{
public class BillDelete
{ /// <summary>
/// 单据内码
/// </summary>
public string Ids { get; set; }
/// <summary>
/// 组织ID
/// </summary>
public long CreateOrgId { get; set; }
/// <summary>
/// 单据编码
/// </summary>
public string Numbers { get; set; }
/// <summary>
/// 是否启用网控
/// </summary>
public bool NetworkCtrl { get; set; }
}
}

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request.KingDee
{
public class BillSave
{
/// <summary>
/// 更新字段
/// </summary>
public List<string> NeedUpDateFields { get; set; }
/// <summary>
/// 返回字段
/// </summary>
public List<string> NeedReturnFields { get; set; }
public bool IsDeleteEntry { get; set; }
/// <summary>
/// 表单数据包JSON类型必录
/// </summary>
public object Model { get; set; }
}
}

File diff suppressed because it is too large Load Diff