AlumniChapterInfo.cs 635 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class AlumniChapterInfo
  8. {
  9. public string Id { get; set; }
  10. public string AlumniChapterName { get; set; }
  11. public string Description { get; set; }
  12. public string SortNo { get; set; }
  13. public string IsLocked { get; set; }
  14. public Nullable<System.DateTime> TimeCreated { get; set; }
  15. public Nullable<System.DateTime> TimeModify { get; set; }
  16. public string CreateUserNo { get; set; }
  17. public string Remark { get; set; }
  18. }
  19. }