AddBlackCard.cs 910 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier.Guard
  5. {
  6. public class AddBlackCard
  7. {
  8. public ulong Id { get; set; }
  9. public ulong Gid { get; set; }
  10. public string CardNo { get; set; }
  11. public DateTime DateTime { get; set; }
  12. public ulong AccountGid { get; set; }
  13. public string AccountId { get; set; }
  14. public byte CardType { get; set; }
  15. public ushort DiscountNo { get; set; }
  16. public string Reason { get; set; }
  17. public byte UploadFlag { get; set; }
  18. public byte OperationType { get; set; }
  19. #region Custom Fields
  20. public long VersionNo { get; set; }
  21. public DateTime LastUpdate { get; set; } = DateTime.Now;
  22. public byte CommitFlag { get; set; }
  23. public byte SyncFlag { get; set; }
  24. #endregion
  25. }
  26. }