移动系统liao
2025-02-17 557c2711a3e103ebc3d0492344eca9730d5e92b2
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
/***********************************************************************
 *            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
{
    /// <summary>
    /// 代理商表
    /// </summary>
    public partial class CoreCmsAgent
    {
 
        /// <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; } = "";
 
    }
}