12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class KxsMorning
- {
- public int Id { get; set; }
- public string PageLink { get; set; }
- public string AppLink { get; set; }
- public string BannerPhoto { get; set; }
- public ulong IsBanner { get; set; }
- public string Url { get; set; }
- public DateTime? EndDate { get; set; }
- public DateTime? StartDate { get; set; }
- public string Title { get; set; }
- public int StudyPerson { get; set; }
- public string Lecturer { get; set; }
- public string Photo { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|