ViewUserAttendMeetInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class ViewUserAttendMeetInfo
  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. public string Name { get; set; }
  23. public string Mobile { get; set; }
  24. public string GraduationYear { get; set; }
  25. public string AMName { get; set; }
  26. public string AMYear { get; set; }
  27. public string AMDate { get; set; }
  28. public string Stauts { get; set; }
  29. public Nullable<System.DateTime> TimeEnd { get; set; }
  30. }
  31. }