21 lines
553 B
C#
21 lines
553 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AntMerchantExpandAssetproduceAssignSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AntMerchantExpandAssetproduceAssignSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 生产指令接收情况,最多200条
|
||
/// </summary>
|
||
[XmlArray("asset_results")]
|
||
[XmlArrayItem("asset_result")]
|
||
public List<AssetResult> AssetResults { get; set; }
|
||
}
|
||
}
|