21 lines
590 B
C#
21 lines
590 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandAssetproduceCompleteSyncModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AntMerchantExpandAssetproduceCompleteSyncModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 物料生产单完成后指定物流信息
|
|
/// </summary>
|
|
[XmlArray("asset_produce_details")]
|
|
[XmlArrayItem("item_delivery_detail")]
|
|
public List<ItemDeliveryDetail> AssetProduceDetails { get; set; }
|
|
}
|
|
}
|