username@email.com
2021-09-02 9da546cd8de37882147f19f6f090544476bfe5ae
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace CY.Model.Pay
{
    /// <summary>
    /// 会员账户查询实体类(无数据库表对应)
    /// </summary>
    public class PaymentAccountQueryModel
    {
        /// <summary>
        /// 累计积分
        /// </summary>
        public int AllScore { get; set; }
 
        /// <summary>
        /// 使用积分
        /// </summary>
        public int UsedScore { get; set; }
 
        /// <summary>
        /// 剩余积分
        /// </summary>
        public int SurplusScore
        {
            get
            {
                return AllScore - UsedScore;
            }
        }
 
        /// <summary>
        /// 总推广收益
        /// </summary>
        public decimal AllPromotionMoney { get; set; }
 
        /// <summary>
        /// 已兑收益
        /// </summary>
        public decimal UsedPromotionMoney { get; set; }
 
        /// <summary>
        /// 未兑收益
        /// </summary>
        public decimal SurplusPromotionMoney {
            get
            {
                return AllPromotionMoney - UsedPromotionMoney;
            }
        }
 
        /// <summary>
        /// 总交易佣金
        /// </summary>
        public decimal AllCommissionMoney { get; set; }
 
        /// <summary>
        /// 已付佣金
        /// </summary>
        public decimal UsedCommissionMoney { get; set; }
 
        /// <summary>
        /// 未付佣金
        /// </summary>
        public decimal SurplusCommissionMoney {
            get
            {
                return AllCommissionMoney - UsedCommissionMoney;
            }
        }
 
        /// <summary>
        /// 总消费金额
        /// </summary>
        public decimal AllPayMoney
        {
            get
            {
                return PayMoneyByPrint;
            }
        }
 
        /// <summary>
        /// 印刷交易
        /// </summary>
        public decimal PayMoneyByPrint
        {
            get;
            set;
        }
    }
}