using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AntMerchantExpandAssetproduceAssignSyncModel Data Structure. /// [Serializable] public class AntMerchantExpandAssetproduceAssignSyncModel : AopObject { /// /// 生产指令接收情况,最多200条 /// [JsonProperty("asset_results")] public List AssetResults { get; set; } } }