修改麻醉师还药时根据手麻传来的用药信息确认而非处方

This commit is contained in:
maqiao 2024-11-20 17:15:24 +08:00
parent 74c688bc07
commit af6f066719
2 changed files with 7 additions and 3 deletions

View File

@ -7,7 +7,7 @@ namespace DM_Weight.Models
/// <summary>
///
///</summary>
[SugarTable("order_detail")]
[SugarTable("order_detail_sm")]
public class OrderDetail
{
/// <summary>

View File

@ -8,7 +8,7 @@ namespace DM_Weight.Models
/// <summary>
///
///</summary>
[SugarTable("order_info")]
[SugarTable("order_info_sm")]
public class OrderInfo:BindableBase
{
@ -252,7 +252,11 @@ namespace DM_Weight.Models
//麻醉师工号
[SugarColumn(ColumnName = "doctor_Code")]
[SugarColumn(ColumnName = "anaesthetist_code")]
public string DoctorCode { get; set; }
//麻醉师姓名
[SugarColumn(ColumnName = "anaesthetist_name")]
public string AnaesthetistName { get; set; }
}
}