You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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; }
}
}