36 lines
838 B
C#
36 lines
838 B
C#
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
|
||
{
|
||
|
||
/// <summary>
|
||
///合集类型(默认0免费;1积分)
|
||
///</summary>
|
||
public int? CourseType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 上架状态(默认0未上架;1已上架)
|
||
///</summary>
|
||
public int? CollectionStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 云校id
|
||
///</summary>
|
||
public long? CloudSchool { get; set; }
|
||
|
||
/// <summary>
|
||
/// 职级(角色)0全部
|
||
///</summary>
|
||
public int? RoleEnum { get; set; }
|
||
|
||
}
|
||
}
|