MedicalHelpHandle.cs 462 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class MedicalHelpHandle
  8. {
  9. public string Id { get; set; }
  10. public string HelpNo { get; set; }
  11. public string HandleNo { get; set; }
  12. public string Contents { get; set; }
  13. public string Status { get; set; }
  14. public Nullable<System.DateTime> TimeHandle { get; set; }
  15. }
  16. }