using System; using System.Collections.Generic; using System.Linq; namespace DM_Dal.Models { /// /// /// public class OrderInfo { /// /// /// public int OrderId { get; set; } /// /// /// 默认值: NULL /// public string Pharmacy { get; set; } /// /// /// public string OrderNo { get; set; } /// /// /// public string PatientId { get; set; } /// /// /// public string PName { get; set; } /// /// /// 默认值: NULL /// public string Sex { get; set; } /// /// /// 默认值: NULL /// public string Age { get; set; } /// /// /// 默认值: NULL /// public string IdNumber { get; set; } /// /// /// 默认值: NULL /// public string PatientCard { get; set; } /// /// /// 默认值: NULL /// public string InvoiceNo { get; set; } /// /// /// 默认值: NULL /// public string PatientNo { get; set; } /// /// /// 默认值: NULL /// public string DoctorName { get; set; } /// /// /// 默认值: NULL /// public DateTime OrderDate { get; set; } /// /// /// public DateTime ChargeDate { get; set; } /// /// /// 默认值: NULL /// public DateTime RecvDate { get; set; } /// /// /// 默认值: NULL /// public string DeptName { get; set; } /// /// /// 默认值: NULL /// public string Disease { get; set; } /// /// /// 默认值: NULL /// public string OrderType { get; set; } /// /// /// 默认值: NULL /// public string ChargeType { get; set; } /// /// /// public int State { get; set; } /// /// /// 默认值: 0 /// public int? HisDispFlag { get; set; } /// /// /// 默认值: 0 /// public int? CancelFlag { get; set; } /// /// /// 默认值: 0 /// public int? DmStatus { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "agent_name")] //public string AgentName { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "agent_id_no")] //public string AgentIdNo { get; set; } /// /// /// 默认值: NULL /// public decimal? Costs { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "payments")] //public decimal? Payments { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "dispensary")] //public string Dispensary { get; set; } /// /// /// 默认值: NULL /// //[SugarColumn(ColumnName = "identity")] //public string Identity { get; set; } } }