using System; using System.Collections.Generic; using System.Linq; namespace MediII.Adapter.ReceiveToScanModel { [Serializable] public partial class TaskResponse : BaseEntity { public long No { get; set; } public string TaskID { get; set; } public string TaskType { get; set; } public int Status { get; set; } public string Content { get; set; } public int ErrNm { get; set; } public string ResolvingMsg { get; set; } public DateTime SystemTime { get; set; } public DateTime ResolvingTime { get; set; } public string RemarkContent { get; set; } } }