using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Video { public class UpdateVideoCollectionSeeReq { /// /// 备 注:课程id /// 默认值: /// public long CourseId { get; set; } /// /// 备 注:课程名称 /// 默认值: /// public string CourseName { get; set; } = null!; /// /// 备 注:封面路径 /// 默认值: /// public string VideosImage { get; set; } = null!; /// /// 备 注:章id /// 默认值: /// public long ChapterId { get; set; } /// /// 备 注:章名称 /// 默认值: /// public string ChapterName { get; set; } = null!; /// /// 备 注:节id /// 默认值: /// public long SectionId { get; set; } /// /// 备 注:节名称 /// 默认值: /// public string SectionName { get; set; } = null!; /// /// 备 注:视频Code /// 默认值: /// public string VideoCode { get; set; } = null!; /// /// 备 注:视频名称 /// 默认值: /// public string VideoName { get; set; } = null!; /// /// 备 注:视频总时长(秒) /// 默认值: /// public int VideoSecond { get; set; } /// /// 备 注:视频播放地址 /// 默认值: /// public string VideoUrl { get; set; } = null!; /// /// 备 注:观看进度时长(秒) /// 默认值: /// public int SeeSecond { get; set; } } }