NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiMarketingDataDishdiag...

27 lines
714 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingDataDishdiagnoseBatchqueryResponse.
/// </summary>
public class KoubeiMarketingDataDishdiagnoseBatchqueryResponse : AopResponse
{
/// <summary>
/// 查询返回的详情数据
/// </summary>
[XmlArray("item_diagnose_list")]
[XmlArrayItem("item_diagnose_detail")]
public List<ItemDiagnoseDetail> ItemDiagnoseList { get; set; }
/// <summary>
/// 记录的总条数
/// </summary>
[XmlElement("total")]
public long Total { get; set; }
}
}