using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TCM.Manager.Models { [SugarTable("VipAccounts")] public class VipAccountsModel { /// /// /// public VipAccountsModel() { } /// /// /// public System.Int64 ClientID { get; set; } /// /// /// public System.Int32 VipCredit { get; set; } /// /// /// public System.Int32 VipLevel { get; set; } /// /// /// public System.Decimal AccumulatedRechargeAmount { get; set; } /// /// /// public System.Decimal AccumulatedConsumeAmount { get; set; } } }