namespace LMS.Repository.DTO.UserDto; public class UserAgentInfoDto { /// /// 用户ID /// public long UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 用户昵称 /// public string NickName { get; set; } /// /// 用户的邀请码 /// public string AffiliateCode { get; set; } /// /// 用户的代理分成比例 /// public double AgentPercent { get; set; } /// /// 邀请人数 /// public int AffiliateNumber { get; set; } /// /// 邀请的VIP人数 /// public int AffiliateVIPNumber { get; set; } /// /// 邀请获取的金额 /// public double AffiliateMoney { get; set; } }