lixiaojun
2022-11-23 48bf955aa337d70111afcc0ff87e0e0671b510c8
Entity/IStation.Entity.Product/sim/SimPaymentRecord.cs
ÎļþÃû´Ó Entity/IStation.Entity.Product/iot/IotPaymentRecord.cs ÐÞ¸Ä
@@ -8,22 +8,22 @@
namespace IStation.Entity
{
    /// <summary>
    /// ç‰©è”卡缴费记录
    /// SIM卡缴费记录
    /// </summary>
    [SugarTable("iot_payment_record")]
    public class IotPaymentRecord : CorpEntity, System.ICloneable
    [SugarTable("sim_payment_record")]
    public class SimPaymentRecord : CorpEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public IotPaymentRecord() { }
        public SimPaymentRecord() { }
        /// <summary>
        /// 
        /// </summary>
        public IotPaymentRecord(IotPaymentRecord rhs) : base(rhs)
        public SimPaymentRecord(SimPaymentRecord rhs) : base(rhs)
        {
            this.ProductID = rhs.ProductID;
            this.CardID = rhs.CardID;
            this.PayerName = rhs.PayerName;
            this.PaymentTime = rhs.PaymentTime;
            this.ValidDays = rhs.ValidDays;
@@ -32,14 +32,14 @@
        }
        /// <summary>
        /// è®¾å¤‡æ ‡è¯†
        /// ç‰©è”卡标识
        /// </summary>   
        public long ProductID
        public long CardID
        {
            get { return _productid; }
            set { _productid = value; }
            get { return _cardid; }
            set { _cardid = value; }
        }
        private long _productid;
        private long _cardid;
        /// <summary>
        /// ç¼´è´¹äºº
@@ -94,9 +94,9 @@
        /// <summary>
        /// 
        /// </summary>
        public IotPaymentRecord Clone()
        public SimPaymentRecord Clone()
        {
            return (IotPaymentRecord)this.MemberwiseClone();
            return (SimPaymentRecord)this.MemberwiseClone();
        }
        object ICloneable.Clone()