| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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<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 HandleNo { get; set; }
- public string HandleStatus { get; set; }
- public string Contents { get; set; }
- public Nullable<System.DateTime> 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; }
- }
- }
|