25 lines
508 B
C#
25 lines
508 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DM_Weight.Models
|
|||
|
{
|
|||
|
public class OrderFinish
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Pharmacy { get; set; }
|
|||
|
|
|||
|
public string PatientId { get; set; }
|
|||
|
|
|||
|
public string OrderNo { get; set; }
|
|||
|
|
|||
|
public int State { get; set; }
|
|||
|
|
|||
|
public string Operator { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|