| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | using System;using System.Collections.Generic;using System.Text;namespace Dfs.WayneChina.SpsDataCourier.Guard{    public class BaseBlackCard    {        public ulong Id { get; set; }        public ulong Gid { get; set; }        public string CardNo { get; set; }        public DateTime DateTime { get; set; }        public ulong AccountGid { get; set; }        public string AccountId { get; set; }        public byte CardType { get; set; }        public ushort DiscountNo { get; set; }        public string Reason { get; set; }        public byte UploadFlag { get; set; }        public byte OperationType { 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    }}
 |