using System;
using System.Collections.Generic;
using System.Text;

namespace Dfs.WayneChina.SpsDataCourier.Guard
{
    public class AddBlackCard
    {
        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
    }
}