using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMedicalcareHosRegnotifyModel Data Structure. /// [Serializable] public class AlipayEcoMedicalcareHosRegnotifyModel : AopObject { /// /// 业务类型: 挂号成功:REG_SUCCESS 挂号取销:REG_CANCEL /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 撤销说明 /// [JsonProperty("cancel_desc")] public string CancelDesc { get; set; } /// /// 取消原因 备注:业务类型是 REG_CANCEL,不可空 /// [JsonProperty("cancel_reason")] public string CancelReason { get; set; } /// /// 科室信息 /// [JsonProperty("dept_info")] public MedicalHospitalDeptInfo DeptInfo { get; set; } /// /// 医生信息 /// [JsonProperty("doctor_info")] public MedicalHospitalDoctorInfo DoctorInfo { get; set; } /// /// 业务扩展参数json格式 /// [JsonProperty("extend_params")] public string ExtendParams { get; set; } /// /// 医院信息 /// [JsonProperty("hos_info")] public MedicalHospitalInfo HosInfo { get; set; } /// /// 排队号 /// [JsonProperty("line_no")] public long LineNo { get; set; } /// /// 通知日期,如果不传通知时间,逻辑由支付宝内部消化判断 格式为yyyy-MM-dd HH:mm:ss。 /// [JsonProperty("notify_time")] public string NotifyTime { get; set; } /// /// 操作类型: 明确定义数据是创建还是更新 创建并更新CREATE_UPDATE 删除DELETE /// [JsonProperty("operate")] public string Operate { get; set; } /// /// 订单详情链接 链接开头为https或http /// [JsonProperty("order_link")] public string OrderLink { get; set; } /// /// 患者证件号码 获取方式通过支付宝钱包用户信息共享接口中获取证件号或者手工输入证件号 /// [JsonProperty("patient_card_no")] public string PatientCardNo { get; set; } /// /// 证件类型 01 身份证 02 护照 03 军官证 04 士兵证 05 户口本 06 警官证 07 台湾居民来往大陆通行证(简称“台胞证”) 08 港澳居民来往内地通行证(简称“回乡证”) 09 临时身份证 10 /// 港澳通行证 11 营业执照 12 外国人居留证 13 香港身份证 14 武警证 15 组织机构代码证 16 行政机关 17 社会团体 18 军队 19 武警 20 下属机构(具有主管单位批文号) 21 基金会 /// 99 其它 /// [JsonProperty("patient_card_type")] public string PatientCardType { get; set; } /// /// 患者姓名 /// [JsonProperty("patient_name")] public string PatientName { get; set; } /// /// 重新预约医生链接 链接开头为https或http 备注:如biz_type的值为REG_CANCEL则不可空 /// [JsonProperty("reg_link")] public string RegLink { get; set; } /// /// 第三方唯一序列号(可以是订单号确保唯一) /// [JsonProperty("third_no")] public string ThirdNo { get; set; } /// /// 就诊日期 格式为yyyy-MM-dd HH:mm:ss。 /// [JsonProperty("treat_date")] public string TreatDate { get; set; } /// /// 就诊显示日期json格式: 类型: 时间区间类型:range 中文显示类型:cn 备注: 1.range类型HH:mm-HH:mm 中间中横线隔开 {"range":"09:00-10:00"} 2.cn类型 上午 /// 1 下午 2 晚上 3 {"cn":"1"} /// [JsonProperty("treat_date_ext")] public string TreatDateExt { get; set; } /// /// 支付宝用户Id,可以通过支付宝钱包用户信息共享接口获取支付宝账户ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }