using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.Model { public class ProgrammeModel { /// /// 节目Id /// public int Id { get; set; } /// /// 素材CODE /// public string Code { get; set; } /// /// 类型(1-图片,2-视频) /// public int FileType { get; set; } /// /// 切换效果 string(1-随机,2-马赛克,3-上下滑动,4-左右滑动,5-渐入) /// public int Effect { get; set; } /// /// 类型( 1-节目 2-插播) /// public int ProType { get; set; } /// /// 总时长 (视频才有图片为空) /// public int Duration { get; set; } /// /// 下载链接 /// public string Img { get; set; } /// /// 开始时间 /// public DateTime LaunchTime { get; set; } /// /// 结束时间 /// public DateTime ExpiryDate { get; set; } /// /// 切换间隔 /// public int Time { get; set; } /// /// 文件大小 /// public int Capacity { get; set; } } }