using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.SpsDataCourier.Guard { public class Account { public ulong Id { get; set; } /// /// Original global record id. /// public ulong Gid { get; set; } public byte AccountSNo { get; set; } public ushort SNo { get; set; } public string AccountId { get; set; } public string AccountName { get; set; } public string Address { get; set; } public string PhoneNo { get; set; } public byte AccountType { get; set; } public int Amount { get; set; } public byte AmountType { get; set; } public string FuelNo { get; set; } public uint Credit { get; set; } public byte State { get; set; } public DateTime AccountDate { get; set; } public string CertType { get; set; } public string CertNo { get; set; } public long RechargeTotal { get; set; } public uint TMac { get; set; } public uint WaitMalloc { get; set; } public byte EnableSms { get; set; } public byte UploadFlag { get; set; } #region Custom Fields public long VersionNo { get; set; } public DateTime LastUpdate { get; set; } = DateTime.Now; public byte CommitFlag { get; set; } public byte SyncFlag { get; set; } #endregion } }