| 12345678910111213141516171819202122232425 |
- 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<System.DateTime> TimeReply { get; set; }
- public Nullable<System.DateTime> TimeEnd { get; set; }
- public string IsLocked { get; set; }
- public string AttachFileNo { get; set; }
- }
- }
|