using LearningOfficer.OA.Common.Request;
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 VideoCollectionAdminPageReq : PageRequest
{
///
///合集类型(默认0免费;1积分)
///
public int? CourseType { get; set; }
///
/// 上架状态(默认0未上架;1已上架)
///
public int? CollectionStatus { get; set; }
///
/// 云校id
///
public long? CloudSchool { get; set; }
///
/// 职级(角色)0全部
///
public int? RoleEnum { get; set; }
}
}