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

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,43 @@
namespace QYZH.InteractiveMagazine.Models.Dto.UserAnswerTaskService
{
/// <summary>
/// 新增学生输出
/// </summary>
public class AddStudentOutput
{
/// <summary>
/// 学生Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 关联微信用户Id
/// </summary>
public long WxUserId { get; set; }
/// <summary>
/// 昵称
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 头像地址
/// </summary>
public string? AvatarUrl { get; set; }
/// <summary>
/// 用户类型
/// </summary>
public string Type { get; set; } = "Normal";
/// <summary>
/// 当前成长值
/// </summary>
public int GrowthPoints { get; set; }
/// <summary>
/// 积分余额
/// </summary>
public int Points { get; set; }
}
}