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

36 lines
838 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}