using QYZH.InteractiveMagazine.Models.Dto; namespace QYZH.InteractiveMagazine.Models.Dto; /// /// Users查询输入DTO /// public class UsersQueryInput : PageQueryModel { /// /// 微信用户ID /// public string? WxUserId { get; set; } } /// /// Users输出DTO (基本信息) /// public class UsersOutput { /// /// 主键ID /// public long Id { get; set; } /// /// 微信用户ID /// public string WxUserId { get; set; } = string.Empty; /// /// 昵称 /// public string Name { get; set; } = string.Empty; /// /// 头像地址 /// public string? AvatarUrl { get; set; } /// /// 积分余额 /// public int Points { get; set; } /// /// 用户类型 /// public string Type { get; set; } = string.Empty; /// /// 状态 /// public string Status { get; set; } = string.Empty; /// /// 当前成长值 /// public int GrowthPoints { get; set; } } /// /// 更新用户状态输入DTO /// public class UpdateUserStatusInput { /// /// 用户状态: 1-启用, 2-冻结 /// public int Status { get; set; } }