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