Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/ToolKit/ToolKitDownloadCountDto.cs

32 lines
1.5 KiB
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 AngleSharp.Io;
using LearningOfficer.OA.Common.Enums;
using LearningOfficer.OA.Common.Request;
using Oracle.ManagedDataAccess.Client;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.ToolKit
{
/// <summary>
/// 工具包下载次数统计
/// </summary>
public class ToolKitDownloadCountDto:PageRequest
{
/// <summary>
/// 备 注:适用对象 1学校2教师3学生
/// 默认值:null表示全部
///</summary>
public ToolObjectType? ProblemObj { get; set; }
/// <summary>
/// 备 注:解决方案学期阶段枚举 初一上上半期 = 71, 初一上下半期 = 72, 初一下上半期 = 73, 初一下下半期 = 74, 初二上上半期 = 81, 初二上下半期 = 82, 初二下上半期 = 83, 初二下下半期 = 84, 初三上上半期 = 91, 初三上下半期 = 92, 初三下上半期 = 93, 初三下下半期 = 94, 高一上上半期 = 101, 高一上下半期 = 102, 高一下上半期 = 103, 高一下下半期 = 104, 高二上上半期 = 111, 高二上下半期 = 112, 高二下上半期 = 113, 高二下下半期 = 114, 高三上上半期 = 121, 高三上下半期 = 122, 高三下上半期 = 123, 高三下下半期 = 124
/// 默认值:null 表示全部
///</summary>
public SolutionSemesterEnum? SolutionSemesterEnum { get; set; }
}
}