using System; namespace GCAS.Model { public class TeamModel { public int Id { get; set; } /// /// 班组名称 /// public string Name { get; set; } /// /// 班组工作时间(开始) /// public string StartTime { get; set; } /// /// 班组工作时间(结束) /// public string EndTime { get; set; } /// /// 添加时间 /// public DateTime Time { get; set; } /// /// 是否跨天 /// public int NextDay { get; set; } } }