using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class ViewMedicalHelpHandle { public string Id { get; set; } public string HandleId { get; set; } public string Title { get; set; } public string ContentApply { get; set; } public string ContactNoApply { get; set; } public string RelationshipApply { get; set; } public string UserNoReply { get; set; } public string ContentReply { get; set; } public Nullable TimeApply { get; set; } public Nullable TimeReply { get; set; } public Nullable TimeEnd { get; set; } public string IsLocked { get; set; } public string HandleNo { get; set; } public string HandleStatus { get; set; } public string Contents { get; set; } public Nullable TimeHandle { get; set; } public string FileTitle { get; set; } public string FileName { get; set; } public string FilePath { get; set; } public string Description { get; set; } public string FileExt { get; set; } public string FileType { get; set; } public string HelpNo { get; set; } public string Status { get; set; } public string UserNameApply { get; set; } public string UserNameReply { get; set; } public string UserNoApply { get; set; } } }