using System; namespace MySystem { public class UData { public int TeamActiveCount { get; set; } //团队激活数 public int TeamTransactionCount { get; set; } //团队交易笔数 public decimal TeamTransactionMoney { get; set; } //团队交易额 public decimal ProfitMoney { get; set; } //交易分润/分润 public decimal ReturnMoney { get; set; } //激活奖励/返现 public decimal OtherMoney { get; set; } //活动奖励/其他 public decimal TotalMoney { get; set; } //累计分润/累计 } }