Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiQualityTestCloudacptBatchQueryResponse.cs

31 lines
691 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}