ÎļþÃû´Ó Entity/IStation.Entity.Product/iot/IotPaymentRecord.cs ÐÞ¸Ä |
| | |
| | | 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; |
| | |
| | | } |
| | | |
| | | /// <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> |
| | | /// 缴费人 |
| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public IotPaymentRecord Clone() |
| | | public SimPaymentRecord Clone() |
| | | { |
| | | return (IotPaymentRecord)this.MemberwiseClone(); |
| | | return (SimPaymentRecord)this.MemberwiseClone(); |
| | | } |
| | | |
| | | object ICloneable.Clone() |