| | |
| | | /*********************************************************************** |
| | | * Project: CoreCms |
| | | * ProjectName: 核心内容管理系统 |
| | | * Web: https://www.corecms.net |
| | | * Author: 大灰灰 |
| | | * Email: jianweie@163.com |
| | | * CreateTime: 2021/1/31 21:45:10 |
| | | * Project: baifenBinfa |
| | | * ProjectName: 百分兵法管理系统 |
| | | * Web: http://chuanyin.com |
| | | * Author: |
| | | * Email: |
| | | * CreateTime: 202403/02 |
| | | * Description: 暂无 |
| | | ***********************************************************************/ |
| | | |
| | | using SqlSugar; |
| | | using System; |
| | | |
| | | namespace CoreCms.Net.Model.ViewModels.DTO.Distribution |
| | |
| | | public class DistributionRankingDTO |
| | | { |
| | | /// <summary> |
| | | /// 分销商序列 |
| | | /// 经销商序列 |
| | | /// </summary> |
| | | public int id { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 分销商昵称 |
| | | /// 经销商昵称 |
| | | /// </summary> |
| | | public string nickname { get; set; } |
| | | |
| | |
| | | /// 订单数 |
| | | /// </summary> |
| | | public decimal orderCount { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 开始时间 |
| | | /// </summary> |
| | | public string startTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 结束时间 |
| | | /// </summary> |
| | | public string endTime { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 绩效总额 |
| | | /// </summary> |
| | | public string achievementTotals { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 绩效奖励总和 |
| | | /// </summary> |
| | | public string achievementBonus { get; set; } |
| | | |
| | | } |
| | | } |