18 lines
457 B
C#
18 lines
457 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|