31 lines
691 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|