Files
2026-07-01 08:18:07 +08:00

28 lines
775 B
C#
Raw Permalink 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 ClaimTaskPointsOutput
{
/// <summary>
/// 总成长值(主任务的 GrowthPoint
/// </summary>
public int TotalGrowthPoints { get; set; }
/// <summary>
/// 总积分(主任务的 Points
/// </summary>
public int TotalPoints { get; set; }
/// <summary>
/// 得分(从 JournalPageTaskUserAnswer 表获取JournalPageTaskId == GroupId 的 Score
/// </summary>
public float Score { get; set; }
/// <summary>
/// 任务编号(从 JournalPageTask.No 字段按 - 分割取索引2前面加"任务"
/// </summary>
public string TaskNo { get; set; }
}