ningshuxia
2022-11-29 a46259b6f1d8d66e0917126eced4a7be16026299
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
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
 
namespace IStation.Entity
{
    /// <summary>
    /// SIM卡缴费记录
    /// </summary>
    [SugarTable("sim_payment_record")]
    public class SimPaymentRecord : CorpEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public SimPaymentRecord() { }
 
        /// <summary>
        /// 
        /// </summary>
        public SimPaymentRecord(SimPaymentRecord rhs) : base(rhs)
        {
            this.CardID = rhs.CardID;
            this.PayerName = rhs.PayerName;
            this.PaymentTime = rhs.PaymentTime;
            this.ValidDays = rhs.ValidDays;
            this.LimitValue = rhs.LimitValue;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// SIM卡标识
        /// </summary>    
        public long CardID
        {
            get { return _cardid; }
            set { _cardid = value; }
        }
        private long _cardid;
 
        /// <summary>
        /// 缴费人
        /// </summary>    
        public string PayerName
        {
            get { return _payername; }
            set { _payername = value; }
        }
        private string _payername;
 
        /// <summary>
        /// 缴费时间
        /// </summary>    
        public DateTime PaymentTime
        {
            get { return _paymenttime; }
            set { _paymenttime = value; }
        }
        private DateTime _paymenttime;
 
        /// <summary>
        /// 有效天数
        /// </summary>    
        public int ValidDays
        {
            get { return _validdays; }
            set { _validdays = value; }
        }
        private int _validdays;
 
        /// <summary>
        /// 有效额度
        /// </summary>    
        public double LimitValue
        {
            get { return _limitvalue; }
            set { _limitvalue = value; }
        }
        private double _limitvalue;
 
        /// <summary>
        /// 说明
        /// </summary>    
        public string Description
        {
            get { return _description; }
            set { _description = value; }
        }
        private string _description;
 
        /// <summary>
        /// 
        /// </summary>
        public SimPaymentRecord Clone()
        {
            return (SimPaymentRecord)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}