Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AntMerchantExpandAssetproduceCompleteSyncModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

20 lines
508 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AntMerchantExpandAssetproduceCompleteSyncModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandAssetproduceCompleteSyncModel : AopObject
{
/// <summary>
/// 物料生产单完成后指定物流信息
/// </summary>
[JsonProperty("asset_produce_details")]
public List<ItemDeliveryDetail> AssetProduceDetails { get; set; }
}
}