新增微信接口以及一些问天

This commit is contained in:
2026-06-24 16:32:59 +08:00
parent 16ad80f2a8
commit 00fa7a21f6
23 changed files with 2079 additions and 180 deletions

View File

@ -0,0 +1,32 @@
namespace QYZH.InteractiveMagazine.Models.Dto.UserAnswerTaskService;
/// <summary>
/// 领取任务积分输出
/// </summary>
public class ClaimTaskPointsOutput
{
/// <summary>
/// 积分流水记录Id
/// </summary>
public long RecordId { get; set; }
/// <summary>
/// 操作前积分余额
/// </summary>
public int PreviousBalance { get; set; }
/// <summary>
/// 操作后积分余额
/// </summary>
public int NewBalance { get; set; }
/// <summary>
/// 实际增加数量
/// </summary>
public int AddedAmount { get; set; }
/// <summary>
/// 任务名称
/// </summary>
public string TaskName { get; set; }
}