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

42 lines
1.1 KiB
C#

using LearningOfficer.OA.Common.Request;
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 ToolKitDownloadLogsDto:PageRequest
{
/// <summary>
/// 解决方案ID
/// </summary>
public long ProId { get; set; }
/// <summary>
/// 工具Id
/// </summary>
public long ToolId { get; set; }
/// <summary>
/// 云校ID 默认null 表示不限
/// </summary>
public long? CloudSchoolId { get; set; }
/// <summary>
/// 学校ID 默认null 表示不限
/// </summary>
public long? SchoolId { get; set; }
/// <summary>
/// 开始时间 默认null 表示不限
/// </summary>
public DateTime? BeginTime { get; set; }
/// <summary>
/// 结束时间 默认null 表示不限
/// </summary>
public DateTime? EndTime { get; set; }
}
}