MedicalHelp.cs 875 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class MedicalHelp
  8. {
  9. public string Id { get; set; }
  10. public string UserNoApply { get; set; }
  11. public string Title { get; set; }
  12. public string ContentApply { get; set; }
  13. public string Status { get; set; }
  14. public string ContactNoApply { get; set; }
  15. public string RelationshipApply { get; set; }
  16. public string UserNoReply { get; set; }
  17. public string ContentReply { get; set; }
  18. public System.DateTime TimeApply { get; set; }
  19. public Nullable<System.DateTime> TimeReply { get; set; }
  20. public Nullable<System.DateTime> TimeEnd { get; set; }
  21. public string IsLocked { get; set; }
  22. public string AttachFileNo { get; set; }
  23. }
  24. }