XiangTan_DM/DM_Weight/Models/OrderFinish.cs

33 lines
811 B
C#
Raw Normal View History

2024-12-03 13:22:42 +08:00
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; }
}
}