username@email.com
2024-10-29 3f91a6737fc06b45461ce11eae5660cbbf766f7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 202403/02   
 *        Description: 暂无
 ***********************************************************************/
 
using System.ComponentModel.DataAnnotations;
using SqlSugar;
 
namespace CoreCms.Net.Model.Entities
{
    /// <summary>
    ///     经销商表
    /// </summary>
    public partial class CoreCmsDistribution
    {
        /// <summary>
        ///     总金额
        /// </summary>
        [Display(Name = "总金额")]
        [SugarColumn(IsIgnore = true)]
        public decimal TotalSettlementAmount { get; set; }
 
 
        /// <summary>
        ///     已结算金额
        /// </summary>
        [Display(Name = "已结算金额")]
        [SugarColumn(IsIgnore = true)]
        public decimal SettlementAmount { get; set; }
 
 
        /// <summary>
        ///     冻结金额
        /// </summary>
        [Display(Name = "冻结金额")]
        [SugarColumn(IsIgnore = true)]
        public decimal FreezeAmount { get; set; }
 
 
        /// <summary>
        ///     本月订单数
        /// </summary>
        [Display(Name = "本月订单数")]
        [SugarColumn(IsIgnore = true)]
        public int CurrentMonthOrder { get; set; }
 
 
        /// <summary>
        ///     今日收益
        /// </summary>
        [Display(Name = "今日收益")]
        [SugarColumn(IsIgnore = true)]
        public decimal TodayFreezeAmount { get; set; }
 
 
        /// <summary>
        ///     今日订单
        /// </summary>
        [Display(Name = "今日订单")]
        [SugarColumn(IsIgnore = true)]
        public int TodayOrder { get; set; }
 
 
        /// <summary>
        ///     今日会员
        /// </summary>
        [Display(Name = "今日会员")]
        [SugarColumn(IsIgnore = true)]
        public int TodayUser { get; set; }
 
 
        /// <summary>
        ///     上架商品数量
        /// </summary>
        [Display(Name = "上架商品数量")]
        [SugarColumn(IsIgnore = true)]
        public int TotalGoods { get; set; }
 
 
        /// <summary>
        ///     所属等级名称
        /// </summary>
        [Display(Name = "所属等级名称")]
        [SugarColumn(IsIgnore = true)]
        public string GradeName { get; set; } = "";
 
        /// <summary>
        ///     是否需要申请
        /// </summary>
        [Display(Name = "是否需要申请")]
        [SugarColumn(IsIgnore = true)]
        public bool NeedApply { get; set; } = true;
 
        /// <summary>
        ///     条件说明
        /// </summary>
        [Display(Name = "条件说明")]
        [SugarColumn(IsIgnore = true)]
        public string ConditionMsg { get; set; } = "";
 
        /// <summary>
        ///     升级条件状态
        /// </summary>
        [Display(Name = "升级条件状态")]
        [SugarColumn(IsIgnore = true)]
        public bool ConditionStatus { get; set; } = true;
 
        /// <summary>
        ///     升级条件进度
        /// </summary>
        [Display(Name = "升级条件进度")]
        [SugarColumn(IsIgnore = true)]
        public int ConditionProgress { get; set; } = 0;
 
 
        /// <summary>
        ///     店铺查询交互数据
        /// </summary>
        [Display(Name = "店铺查询交互数据")]
        [SugarColumn(IsIgnore = true)]
        public string Store { get; set; } = "";
 
 
        /// <summary>
        ///     用户等级
        /// </summary>
        [Display(Name = "用户等级")]
        [SugarColumn(IsIgnore = true)]
        public int UserGradeId { get; set; } = 0;
 
 
        /// <summary>
        ///     区域字符串
        /// </summary>
        [Display(Name = "区域字符串")]
        [SugarColumn(IsIgnore = true)]
        public string areaName { get; set; }
 
        /// <summary>
        ///     经销商业绩历史业绩总和
        /// </summary>
        [Display(Name = "经销商业绩历史业绩总和")]
        [SugarColumn(IsIgnore = true)]
        public decimal DistributionAchievementTotals { get; set; }
 
 
        /// <summary>
        ///     应领佣金
        /// </summary>
        [Display(Name = "应领佣金")]
        [SugarColumn(IsIgnore = true)]
        public decimal DistributionYingLingTotals { get; set; }
 
        /// <summary>
        ///     可领佣金
        /// </summary>
        [Display(Name = "可领佣金")]
        [SugarColumn(IsIgnore = true)]
        public decimal DistributionKeLingTotals { get; set; }
        /// <summary>
        ///     已结算佣金
        /// </summary>
        [Display(Name = "已结算佣金")]
        [SugarColumn(IsIgnore = true)]
        public decimal DistributionYiJieSuanTotals
        {
            get; set;
        }
       
    }
}