using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TCM.Manager.Models { [SugarTable("VipBenefits")] public class VipBenefitsModel { /// /// /// public VipBenefitsModel() { } /// /// /// public System.Int32 VipLevel { get; set; } /// /// /// public System.Int32 MinVipCredit { get; set; } /// /// /// public System.Int32 MaxVipCredit { get; set; } /// /// /// public System.Decimal MinRechargeAmount { get; set; } /// /// /// public System.Decimal MaxRechargeAmount { get; set; } /// /// /// public System.Decimal RechargeBenefit { get; set; } /// /// /// public System.Decimal RechargeRebate { get; set; } /// /// /// public System.Decimal SoloWonBenefit { get; set; } /// /// /// public System.Int32 RouletteLevel { get; set; } /// /// /// public System.Int32 FortuneRouletteLevel { get; set; } /// /// /// public System.Decimal MinConsumeAmount { get; set; } /// /// /// public System.Decimal MaxConsumeAmount { get; set; } /// /// /// public System.Boolean RewardTournamentEnable { get; set; } /// /// /// public System.Decimal FortuneRouletteRate { get; set; } /// /// /// public System.Boolean EnableVipService { get; set; } /// /// /// public System.Boolean EnableTransfer { get; set; } } }