using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayInsDataDiseaseIdentifyModel Data Structure. /// [Serializable] public class AlipayInsDataDiseaseIdentifyModel : AopObject { /// /// 疾病处理操作,例如标化(STANDARD)、打标(TAG) /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// 疾病名称 /// [XmlElement("disease_name")] public string DiseaseName { get; set; } } }