/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 代理商表 /// public partial class CoreCmsAgent { /// /// 总金额 /// [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; } = ""; } }