using GDZZ.Core.Entity; using System; using System.Collections.Generic; namespace GDZZ.Application { /// /// 课程表输出参数 /// public class CourseOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 文件描述 /// public string Info { get; set; } /// /// 标价 /// public decimal Price { get; set; } /// /// 标签 /// public string Tags { get; set; } /// /// 缩略图 /// public string Url { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 视频路径 /// public string VoiderUrl { get; set; } /// /// 课程视频对象 /// public List sysFile { get; set; } } }