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