Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiSalesKbassetStuffPurordersendSyncModel.cs

20 lines
534 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiSalesKbassetStuffPurordersendSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiSalesKbassetStuffPurordersendSyncModel : AopObject
{
/// <summary>
/// 供应商同步的发货信息及物流信息记录最多100条
/// </summary>
[JsonProperty("purchase_order_sends")]
public List<AccessPurchaseOrderSend> PurchaseOrderSends { get; set; }
}
}