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