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

48 lines
1.2 KiB
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.ToolKit
{
public class ToolKitDownloadCountViewDto
{
/// <summary>
/// 解决方案ID
/// </summary>
public long ProId { get; set; }
/// <summary>
/// 解决方案问题描述
/// </summary>
public string ProblemTitle { get; set; } = null!;
/// <summary>
/// 该方案下工具包
/// </summary>
public List<ToolKitDownloadCountDetailsViewDto> ToolDetails { get; set; }
}
public class ToolKitDownloadCountDetailsViewDto
{
/// <summary>
/// 工具Id
/// </summary>
public long ToolId { get; set; }
/// <summary>
/// 备 注:工具名称
///</summary>
public string ToolName { get; set; } = null!;
/// <summary>
/// 备 注:工具格式 文件后缀名
/// 默认值:
///</summary>
public string ToolType { get; set; } = null!;
/// <summary>
/// 下载次数
/// </summary>
public int DownloadCount { get; set; } = 0;
}
}