using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { [SugarTable("hkc_order_finish")] public class OrderFinish { [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public int Id { get; set; } [SugarColumn(ColumnName = "pharmacy")] public string Pharmacy { get; set; } [SugarColumn(ColumnName = "patient_id")] public string PatientId { get; set; } [SugarColumn(ColumnName = "order_no")] public string OrderNo { get; set; } [SugarColumn(ColumnName = "state")] public int State { get; set; } /// /// 余液表中回收人() /// [SugarColumn(ColumnName = "operator")] public string Operator { get; set; } /// /// 手术间号 /// [SugarColumn(ColumnName = "win_no")] public string WinNo { get; set; } } }