Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Dto/UserAnswerTaskService/SubCatalogDetailOutput.cs

38 lines
943 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace QYZH.InteractiveMagazine.Models.Dto.UserAnswerTaskService;
/// <summary>
/// 二级目录详情输出(含页码范围、任务数、完成状态)
/// </summary>
public class SubCatalogDetailOutput
{
/// <summary>
/// 二级目录ID
/// </summary>
public long CatalogId { get; set; }
/// <summary>
/// 二级目录名字
/// </summary>
public string SecondLevelCatalogName { get; set; }
/// <summary>
/// 起始页码(杂志第几页开始)
/// </summary>
public int StartPage { get; set; }
/// <summary>
/// 结束页码(杂志第几页结束)
/// </summary>
public int EndPage { get; set; }
/// <summary>
/// 任务数量
/// </summary>
public int TaskCount { get; set; }
/// <summary>
/// 状态描述格式如1/2 进行中、2/2 已完成、0/2 未开始)
/// </summary>
public string Status { get; set; }
}