using System; using System.Collections.Generic; using System.Linq; namespace MediII.Adapter.ReceiveToScanModel { [Serializable] public partial class TaskMessage : BaseEntity { public long No { get; set; } public string TaskID { get; set; } public string VisitNo { get; set; } public string TaskType { get; set; } public string TypeName { get; set; } public int TaskStatus { get; set; } public string Parameter1 { get; set; } public string Parameter2 { get; set; } public string Parameter3 { get; set; } public string ErrMsg { get; set; } public int ErrNm { get; set; } public DateTime TaskTime { get; set; } public string Reserve1 { get; set; } public string Reserve2 { get; set; } public string Reserve3 { get; set; } public DateTime SystemTime { get; set; } public DateTime UpdateTime { get; set; } } }