using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MedicalHospitalDoctorInfo Data Structure.
///
[Serializable]
public class MedicalHospitalDoctorInfo : AopObject
{
///
/// 医生唯一标识,编码开发者生成并保证唯一
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 医生名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 性别 女性:F 男性:M 未知:U
///
[JsonProperty("sex")]
public string Sex { get; set; }
}
}