using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TCM.Manager.Models { [SugarTable("Accounts")] public class AccountsModel { /// /// /// public AccountsModel() { } /// /// /// public System.Int64 ClientID { get; set; } /// /// /// public System.Int64 TournamentID { get; set; } /// /// /// public System.Decimal Balance { get; set; } /// /// /// public System.Decimal ExperiencePoints { get; set; } /// /// /// public System.Decimal RewardPoints { get; set; } /// /// /// public System.Decimal Payout { get; set; } /// /// /// public System.Byte[] TS { get; set; } /// /// /// public System.DateTime RegisteredTime { get; set; } /// /// /// public System.Int32 GoldBadges { get; set; } /// /// /// public System.Int32 SilverBadges { get; set; } /// /// /// public System.Int32 CurrentLevelMinPoints { get; set; } /// /// /// public System.Int32 NextLevelRequiredPoints { get; set; } /// /// /// public System.Int32 UserLevel { get; set; } /// /// /// public System.String CorrelationAccountID { get; set; } /// /// /// public System.Decimal Energy { get; set; } } }