40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
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; }
|
|
/// <summary>
|
|
/// 余液表中回收人()
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "operator")]
|
|
public string Operator { get; set; }
|
|
/// <summary>
|
|
/// 手术间号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "win_no")]
|
|
public string WinNo { get; set; }
|
|
|
|
}
|
|
}
|