33 lines
		
	
	
		
			811 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			33 lines
		
	
	
		
			811 B
		
	
	
	
		
			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; }
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								        [SugarColumn(ColumnName = "operator")]
							 | 
						|||
| 
								 | 
							
								        public string Operator { get; set; }
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								    }
							 | 
						|||
| 
								 | 
							
								}
							 |