Commit e71c6b21 by lcx

his数据提取科室保存字段修改

parent d15d08c8
...@@ -7,11 +7,21 @@ namespace Performance.EntityModels ...@@ -7,11 +7,21 @@ namespace Performance.EntityModels
public class HisData public class HisData
{ {
/// <summary> /// <summary>
/// His科室
/// </summary>
public string HisDepartment { get; set; }
/// <summary>
/// 科室 /// 科室
/// </summary> /// </summary>
public string Department { get; set; } public string Department { get; set; }
/// <summary> /// <summary>
/// 核算单元
/// </summary>
public string AccountingUnit { get; set; }
/// <summary>
/// 医生姓名 /// 医生姓名
/// </summary> /// </summary>
public string DoctorName { get; set; } public string DoctorName { get; set; }
......
...@@ -133,7 +133,7 @@ private void HisData(per_allot allot, sys_hospitalconfig config, his_script scri ...@@ -133,7 +133,7 @@ private void HisData(per_allot allot, sys_hospitalconfig config, his_script scri
AllotId = allot.ID, AllotId = allot.ID,
Year = allot.Year, Year = allot.Year,
Month = allot.Month, Month = allot.Month,
Department = t.Department, HisDepartment = GetSaveValue(t.HisDepartment, t.Department, t.AccountingUnit),
PersonnelName = t.DoctorName, PersonnelName = t.DoctorName,
PersonnelNumber = GetSaveValue(t.PersonnelNumber, t.DoctorName), PersonnelNumber = GetSaveValue(t.PersonnelNumber, t.DoctorName),
SourceType = script.SourceType, SourceType = script.SourceType,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment