using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// SIM卡缴费记录 /// public partial class SimPaymentRecord : System.ICloneable { /// /// /// public SimPaymentRecord() { } /// /// /// public SimPaymentRecord(SimPaymentRecord rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; 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 void Reset(SimPaymentRecord rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; 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 ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 物联卡标识 /// public long CardID { get; set; } /// /// 缴费人 /// public string PayerName { get; set; } /// /// 缴费时间 /// public DateTime PaymentTime { get; set; } /// /// 有效天数 /// public int ValidDays { get; set; } /// /// 有效额度 /// public double LimitValue { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public SimPaymentRecord Clone() { return (SimPaymentRecord)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }