Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiQualityTestCloudacptBatchQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

31 lines
691 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiQualityTestCloudacptBatchQueryResponse.
/// </summary>
public class KoubeiQualityTestCloudacptBatchQueryResponse : AopResponse
{
/// <summary>
/// 活动id
/// </summary>
[JsonProperty("activity_id")]
public string ActivityId { get; set; }
/// <summary>
/// 批次列表
/// </summary>
[JsonProperty("batch_list")]
public List<OpenBatch> BatchList { get; set; }
/// <summary>
/// 单品批次数
/// </summary>
[JsonProperty("batch_num")]
public string BatchNum { get; set; }
}
}