Account.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier.Guard
  5. {
  6. public class Account
  7. {
  8. public ulong Id { get; set; }
  9. /// <summary>
  10. /// Original global record id.
  11. /// </summary>
  12. public ulong Gid { get; set; }
  13. public byte AccountSNo { get; set; }
  14. public ushort SNo { get; set; }
  15. public string AccountId { get; set; }
  16. public string AccountName { get; set; }
  17. public string Address { get; set; }
  18. public string PhoneNo { get; set; }
  19. public byte AccountType { get; set; }
  20. public int Amount { get; set; }
  21. public byte AmountType { get; set; }
  22. public string FuelNo { get; set; }
  23. public uint Credit { get; set; }
  24. public byte State { get; set; }
  25. public DateTime AccountDate { get; set; }
  26. public string CertType { get; set; }
  27. public string CertNo { get; set; }
  28. public long RechargeTotal { get; set; }
  29. public uint TMac { get; set; }
  30. public uint WaitMalloc { get; set; }
  31. public byte EnableSms { get; set; }
  32. public byte UploadFlag { get; set; }
  33. #region Custom Fields
  34. public long VersionNo { get; set; }
  35. public DateTime LastUpdate { get; set; } = DateTime.Now;
  36. public byte CommitFlag { get; set; }
  37. public byte SyncFlag { get; set; }
  38. #endregion
  39. }
  40. }