ViewMedicalHelpHandle.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ViewMedicalHelpHandle
  8. {
  9. public string Id { get; set; }
  10. public string HandleId { get; set; }
  11. public string Title { get; set; }
  12. public string ContentApply { get; set; }
  13. public string ContactNoApply { get; set; }
  14. public string RelationshipApply { get; set; }
  15. public string UserNoReply { get; set; }
  16. public string ContentReply { get; set; }
  17. public Nullable<System.DateTime> TimeApply { get; set; }
  18. public Nullable<System.DateTime> TimeReply { get; set; }
  19. public Nullable<System.DateTime> TimeEnd { get; set; }
  20. public string IsLocked { get; set; }
  21. public string HandleNo { get; set; }
  22. public string HandleStatus { get; set; }
  23. public string Contents { get; set; }
  24. public Nullable<System.DateTime> TimeHandle { get; set; }
  25. public string FileTitle { get; set; }
  26. public string FileName { get; set; }
  27. public string FilePath { get; set; }
  28. public string Description { get; set; }
  29. public string FileExt { get; set; }
  30. public string FileType { get; set; }
  31. public string HelpNo { get; set; }
  32. public string Status { get; set; }
  33. public string UserNameApply { get; set; }
  34. public string UserNameReply { get; set; }
  35. public string UserNoApply { get; set; }
  36. }
  37. }