37 lines
998 B
C#
37 lines
998 B
C#
using LearningOfficer.OA.Common.Response;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.ToolKit
|
|
{
|
|
public class ToolKitDownloadLogsViewDto
|
|
{
|
|
/// <summary>
|
|
/// 工具包名称
|
|
/// </summary>
|
|
public string ToolName { get; set; } = null!;
|
|
/// <summary>
|
|
/// 隶属方案
|
|
/// </summary>
|
|
public string ProblemTitle { get; set; } = null!;
|
|
/// <summary>
|
|
/// 下载记录
|
|
/// </summary>
|
|
public PageResponse<ToolKitDownloadLogsDetailsViewDto> result { get; set; }
|
|
}
|
|
public class ToolKitDownloadLogsDetailsViewDto
|
|
{
|
|
/// <summary>
|
|
/// 下载人名称
|
|
/// </summary>
|
|
public string DownloadUserName { get; set; } = null!;
|
|
/// <summary>
|
|
/// 下载时间
|
|
/// </summary>
|
|
public DateTime DowloadTime { get; set; }
|
|
}
|
|
}
|