NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsDataDiseaseQueryMo...

31 lines
742 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayInsDataDiseaseQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsDataDiseaseQueryModel : AopObject
{
/// <summary>
/// 疾病名称
/// </summary>
[XmlElement("disease_name")]
public string DiseaseName { get; set; }
/// <summary>
/// 分页使用页码1开始
/// </summary>
[XmlElement("page_index")]
public long PageIndex { get; set; }
/// <summary>
/// 页码大小最大50
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}