using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Dfs.WayneChina.SpsDataCourier.Guard { public class RechargeUpload { [Key] public long Id { get; set; } /// /// GID of the record. /// public long Gid { get; set; } /// /// Account ID. /// public string AccountId { get; set; } /// /// Card number. /// public string CardNo { get; set; } /// /// Operation type, 1 = INSERT, 2 = UPDATE. /// public int Operation { get; set; } /// /// Status of the operation, 0 = OK, 1 = NOK. /// public int Status { get; set; } /// /// Time stamp of the operation. /// public DateTime OperationTime { get; set; } } }