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