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 { /// /// 解决方案ID /// public long ProId { get; set; } /// /// 解决方案问题描述 /// public string ProblemTitle { get; set; } = null!; /// /// 该方案下工具包 /// public List ToolDetails { get; set; } } public class ToolKitDownloadCountDetailsViewDto { /// /// 工具Id /// public long ToolId { get; set; } /// /// 备 注:工具名称 /// public string ToolName { get; set; } = null!; /// /// 备 注:工具格式 文件后缀名 /// 默认值: /// public string ToolType { get; set; } = null!; /// /// 下载次数 /// public int DownloadCount { get; set; } = 0; } }