123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Guard
- {
- public class CardUpload
- {
- [Key]
- public long Id { get; set; }
- /// <summary>
- /// GID from the original record.
- /// </summary>
- public long Gid { get; set; }
- /// <summary>
- /// Card number.
- /// </summary>
- [Required]
- public string CardNo { get; set; }
- /// <summary>
- /// The operation type, 1 = INSERT, 2 = UPDATE.
- /// </summary>
- public byte Operation { get; set; }
- /// <summary>
- /// Status of the operation, 0 = SUCCESS, rest means FAILURE.
- /// </summary>
- public int Status { get; set; }
- /// <summary>
- /// Time stamp of the operation.
- /// </summary>
- public DateTime OperationTime { get; set; }
- }
- }
|