KxsMorning.cs 843 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaModels
  4. {
  5. public partial class KxsMorning
  6. {
  7. public int Id { get; set; }
  8. public string PageLink { get; set; }
  9. public string AppLink { get; set; }
  10. public string BannerPhoto { get; set; }
  11. public ulong IsBanner { get; set; }
  12. public string Url { get; set; }
  13. public DateTime? EndDate { get; set; }
  14. public DateTime? StartDate { get; set; }
  15. public string Title { get; set; }
  16. public int StudyPerson { get; set; }
  17. public string Lecturer { get; set; }
  18. public string Photo { get; set; }
  19. public int Version { get; set; }
  20. public int DelFlag { get; set; }
  21. public DateTime? UpdateTime { get; set; }
  22. public DateTime? CreateTime { get; set; }
  23. }
  24. }