using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 添加Sim卡缴费记录 /// public class AddSimPaymentRecordInput { /// /// 客户标识 /// public long CorpID { get; set; } /// /// SIM卡标识 /// 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; } } }