12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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; }
- /// <summary>
- /// GID of the record.
- /// </summary>
- public long Gid { get; set; }
- /// <summary>
- /// Account ID.
- /// </summary>
- public string AccountId { get; set; }
- /// <summary>
- /// Card number.
- /// </summary>
- public string CardNo { get; set; }
- /// <summary>
- /// Operation type, 1 = INSERT, 2 = UPDATE.
- /// </summary>
- public int Operation { get; set; }
- /// <summary>
- /// Status of the operation, 0 = OK, 1 = NOK.
- /// </summary>
- public int Status { get; set; }
- /// <summary>
- /// Time stamp of the operation.
- /// </summary>
- public DateTime OperationTime { get; set; }
- }
- }
|