/*********************************************************************** * Project: CoreCms * ProjectName: 百分兵法管理系统 * Web: hhtp://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; namespace CoreCms.Net.Model.ViewModels.DTO.Distribution { public class DistributionRankingDTO { /// /// 经销商序列 /// public int id { get; set; } /// /// 经销商昵称 /// public string nickname { get; set; } /// /// 加入时间 /// public DateTime createtime { get; set; } /// /// 累计收益 /// public decimal totalInCome { get; set; } /// /// 订单数 /// public decimal orderCount { get; set; } } }