NewGaoKaoApi/PaymentSDK/AliPay/Domain/MedicalHospitalDoctorInfo.cs

31 lines
744 B
C#
Raw 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>
/// MedicalHospitalDoctorInfo Data Structure.
/// </summary>
[Serializable]
public class MedicalHospitalDoctorInfo : AopObject
{
/// <summary>
/// 医生唯一标识,编码开发者生成并保证唯一
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 医生名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 性别 女性F 男性M 未知U
/// </summary>
[XmlElement("sex")]
public string Sex { get; set; }
}
}