| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class MedicalHelpHandle
- {
- public string Id { get; set; }
- public string HelpNo { get; set; }
- public string HandleNo { get; set; }
- public string Contents { get; set; }
- public string Status { get; set; }
- public Nullable<System.DateTime> TimeHandle { get; set; }
- }
- }
|