/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.ComponentModel.DataAnnotations; using SqlSugar; namespace CoreCms.Net.Model.Entities { /// /// 经销商表 /// public partial class CoreCmsDistribution { /// /// 总金额 /// [Display(Name = "总金额")] [SugarColumn(IsIgnore = true)] public decimal TotalSettlementAmount { get; set; } /// /// 已结算金额 /// [Display(Name = "已结算金额")] [SugarColumn(IsIgnore = true)] public decimal SettlementAmount { get; set; } /// /// 冻结金额 /// [Display(Name = "冻结金额")] [SugarColumn(IsIgnore = true)] public decimal FreezeAmount { get; set; } /// /// 本月订单数 /// [Display(Name = "本月订单数")] [SugarColumn(IsIgnore = true)] public int CurrentMonthOrder { get; set; } /// /// 今日收益 /// [Display(Name = "今日收益")] [SugarColumn(IsIgnore = true)] public decimal TodayFreezeAmount { get; set; } /// /// 今日订单 /// [Display(Name = "今日订单")] [SugarColumn(IsIgnore = true)] public int TodayOrder { get; set; } /// /// 今日会员 /// [Display(Name = "今日会员")] [SugarColumn(IsIgnore = true)] public int TodayUser { get; set; } /// /// 上架商品数量 /// [Display(Name = "上架商品数量")] [SugarColumn(IsIgnore = true)] public int TotalGoods { get; set; } /// /// 所属等级名称 /// [Display(Name = "所属等级名称")] [SugarColumn(IsIgnore = true)] public string GradeName { get; set; } = ""; /// /// 是否需要申请 /// [Display(Name = "是否需要申请")] [SugarColumn(IsIgnore = true)] public bool NeedApply { get; set; } = true; /// /// 条件说明 /// [Display(Name = "条件说明")] [SugarColumn(IsIgnore = true)] public string ConditionMsg { get; set; } = ""; /// /// 升级条件状态 /// [Display(Name = "升级条件状态")] [SugarColumn(IsIgnore = true)] public bool ConditionStatus { get; set; } = true; /// /// 升级条件进度 /// [Display(Name = "升级条件进度")] [SugarColumn(IsIgnore = true)] public int ConditionProgress { get; set; } = 0; /// /// 店铺查询交互数据 /// [Display(Name = "店铺查询交互数据")] [SugarColumn(IsIgnore = true)] public string Store { get; set; } = ""; /// /// 用户等级 /// [Display(Name = "用户等级")] [SugarColumn(IsIgnore = true)] public int UserGradeId { get; set; } = 0; /// /// 区域字符串 /// [Display(Name = "区域字符串")] [SugarColumn(IsIgnore = true)] public string areaName { get; set; } /// /// 经销商业绩历史业绩总和 /// [Display(Name = "经销商业绩历史业绩总和")] [SugarColumn(IsIgnore = true)] public decimal DistributionAchievementTotals { get; set; } /// /// 应领佣金 /// [Display(Name = "应领佣金")] [SugarColumn(IsIgnore = true)] public decimal DistributionYingLingTotals { get; set; } /// /// 可领佣金 /// [Display(Name = "可领佣金")] [SugarColumn(IsIgnore = true)] public decimal DistributionKeLingTotals { get; set; } /// /// 已结算佣金 /// [Display(Name = "已结算佣金")] [SugarColumn(IsIgnore = true)] public decimal DistributionYiJieSuanTotals { get; set; } } }