Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Video/UpdateVideoCollectionSeeReq.cs

85 lines
2.0 KiB
C#

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
{
/// <summary>
/// 备 注:课程id
/// 默认值:
///</summary>
public long CourseId { get; set; }
/// <summary>
/// 备 注:课程名称
/// 默认值:
///</summary>
public string CourseName { get; set; } = null!;
/// <summary>
/// 备 注:封面路径
/// 默认值:
///</summary>
public string VideosImage { get; set; } = null!;
/// <summary>
/// 备 注:章id
/// 默认值:
///</summary>
public long ChapterId { get; set; }
/// <summary>
/// 备 注:章名称
/// 默认值:
///</summary>
public string ChapterName { get; set; } = null!;
/// <summary>
/// 备 注:节id
/// 默认值:
///</summary>
public long SectionId { get; set; }
/// <summary>
/// 备 注:节名称
/// 默认值:
///</summary>
public string SectionName { get; set; } = null!;
/// <summary>
/// 备 注:视频Code
/// 默认值:
///</summary>
public string VideoCode { get; set; } = null!;
/// <summary>
/// 备 注:视频名称
/// 默认值:
///</summary>
public string VideoName { get; set; } = null!;
/// <summary>
/// 备 注:视频总时长(秒)
/// 默认值:
///</summary>
public int VideoSecond { get; set; }
/// <summary>
/// 备 注:视频播放地址
/// 默认值:
///</summary>
public string VideoUrl { get; set; } = null!;
/// <summary>
/// 备 注:观看进度时长(秒)
/// 默认值:
///</summary>
public int SeeSecond { get; set; }
}
}