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 VideoCollectionInfoEditReq { /// /// id /// public long Id { get; set; } = 0; public string CourseName { get; set; } = ""; /// /// 备 注:视频合集id /// public long CourseId { get; set; } /// /// 备 注:视频类型(默认0免费;1积分) /// 默认值: /// [SugarColumn(ColumnName = "course_type")] public int CourseType { get; set; } /// /// 备 注:兑换积分 /// 默认值: /// [SugarColumn(ColumnName = "change_points")] public int ChangePoints { get; set; } /// /// 备 注:云校id /// 默认值: /// [SugarColumn(ColumnName = "cloud_school")] public List CloudSchool { get; set; } /// /// 备 注:职级(角色)0全部 /// 默认值: /// [SugarColumn(ColumnName = "role_enum")] public List RoleEnum { get; set; } } }