31 lines
788 B
C#
31 lines
788 B
C#
using LearningOfficer.OA.Common.Enums;
|
|
using LearningOfficer.OA.Common.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.Tool
|
|
{
|
|
public class ToolKitSearchDto : PageRequest
|
|
{
|
|
/// <summary>
|
|
/// 工具包类型
|
|
/// </summary>
|
|
public ToolClassType? ToolClassType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工具包对象
|
|
/// </summary>
|
|
public ToolObjectType? ToolObjectType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解决方案年级id集合
|
|
/// </summary>
|
|
public List<SolutionSemesterEnum>? SolutionSemesterEnums { get; set; }
|
|
|
|
public string? ToolName { get; set; }
|
|
}
|
|
}
|