修改数据库模型增加HosKey字段,该字段表示医疗机构主键

This commit is contained in:
falcon 2019-03-28 09:16:51 +08:00
parent 0309fe8f8f
commit 1a5086f3ad
2 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,10 @@ namespace Cmdjy.Dal.Tables
/// </summary>
public string RawAddress { get; set; }
/// <summary>
/// 医疗机构传入的联合主键
/// </summary>
public string HosKey { get; set; }
/// <summary>
/// "药品医保代码":"YP0306401000650",
/// </summary>
public string DrugNo { get; set; }

View File

@ -28,6 +28,10 @@ namespace Cmdjy.Dal.Tables
/// </summary>
public PrescriptionType Type { get; set; }
/// <summary>
/// 医疗机构传入的联合主键
/// </summary>
public string HosKey { get; set; }
/// <summary>
/// 如果为退方,这里传要退的处方流水号。此编号在下单应答消息中提供
/// </summary>
public string RawRecordId { get; set; }