using System; using System.Collections.Generic; using System.Linq; namespace DM_Weight.Models { /// /// /// public class OrderDetail { /// /// /// public int Id { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "order_id")] //public int? OrderId { get; set; } /// /// /// public string PatientId { get; set; } /// /// /// public string OrderNo { get; set; } /// /// /// public DateTime ChargeDate { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "serial_no")] //public int? SerialNo { get; set; } /// /// /// public string DrugId { get; set; } public DrugInfo DrugInfo { get; set; } /// /// /// public int Quantity { get; set; } /// /// /// 默认值: NULL /// public string OrderUnit { get; set; } /// /// /// 默认值: 1 /// public int? UnitConvercoef { get; set; } /// /// /// 默认值: NULL /// public string SetManuNo { get; set; } /// /// /// 默认值: NULL /// public string SetEffDate { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "price")] //public string Price { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "total_price")] //public string TotalPrice { get; set; } /// /// /// 默认值: NULL /// public string UseDiscrip { get; set; } /// /// /// 默认值: NULL /// public string UseFrequ { get; set; } /// /// /// 默认值: NULL /// public string UseOnce { get; set; } /// /// /// 默认值: NULL /// public string UseBy { get; set; } /// /// /// 默认值: '0' /// public string UseSelf { get; set; } /// /// /// 默认值: NULL /// public string UseDosage { get; set; } } }