using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class MedicalHelp { public string Id { get; set; } public string UserNoApply { get; set; } public string Title { get; set; } public string ContentApply { get; set; } public string Status { get; set; } public string ContactNoApply { get; set; } public string RelationshipApply { get; set; } public string UserNoReply { get; set; } public string ContentReply { get; set; } public System.DateTime TimeApply { get; set; } public Nullable TimeReply { get; set; } public Nullable TimeEnd { get; set; } public string IsLocked { get; set; } public string AttachFileNo { get; set; } } }