Files
RBMESAPICore/Models/Pangu/PanguPostBill.cs
yuyubohh e8494ba988 qqq
2025-09-09 22:41:29 +08:00

18 lines
457 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}