AttendMeet.cs 803 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class AttendMeet
  8. {
  9. public string Id { get; set; }
  10. public string AlumnusNo { get; set; }
  11. public string AMNo { get; set; }
  12. public string Suggest { get; set; }
  13. public string IsAudit { get; set; }
  14. public string IsLocked { get; set; }
  15. public string IsCost { get; set; }
  16. public string IsBranch { get; set; }
  17. public Nullable<System.DateTime> CostTime { get; set; }
  18. public string IsVip { get; set; }
  19. public string Remark { get; set; }
  20. public Nullable<System.DateTime> TimeCreated { get; set; }
  21. public Nullable<System.DateTime> TimeModify { get; set; }
  22. }
  23. }