This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace RB_MES_API.Models.Pangu
{
/// <summary>
/// 盘古系统推送单据的JSON类
/// </summary>
public class PanguPostBill
{
/// <summary>
/// 单据接口类型
/// </summary>
public string DocType { get; set; }=string.Empty;
/// <summary>
/// 调用数据值JSON字符串
/// </summary>
public List<Dictionary<string, object>> DataSet { get; set; }
}
}