using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using SqlSugar; namespace IStation.Entity { /// /// 物联卡缴费记录 /// [SugarTable("iot_payment_record")] public class IotPaymentRecord : CorpEntity, System.ICloneable { /// /// /// public IotPaymentRecord() { } /// /// /// public IotPaymentRecord(IotPaymentRecord rhs) : base(rhs) { this.ProductID = rhs.ProductID; this.PayerName = rhs.PayerName; this.PaymentTime = rhs.PaymentTime; this.ValidDays = rhs.ValidDays; this.LimitValue = rhs.LimitValue; this.Description = rhs.Description; } /// /// 设备标识 /// public long ProductID { get { return _productid; } set { _productid = value; } } private long _productid; /// /// 缴费人 /// 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 IotPaymentRecord Clone() { return (IotPaymentRecord)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }