using System; using System.Collections.Generic; namespace MySystem.Models { public partial class UserData { public int UserId { get; set; } public int MachineCount { get; set; } public decimal ProfitRewardRate { get; set; } public decimal CashFreezeAmt { get; set; } public decimal SettleAmount { get; set; } public decimal ActiveRewardAmount { get; set; } public int ToRefundOrderCount { get; set; } public int ToCommentOrderCount { get; set; } public int ToReceiveOrderCount { get; set; } public int ToSendOrderCount { get; set; } public int ToPayOrderCount { get; set; } public decimal Coupons { get; set; } public int CollectionCount { get; set; } public int FansCount { get; set; } public int FollowCount { get; set; } public decimal TotalUseIntegral { get; set; } public decimal TotalOrderMoney { get; set; } public decimal Integral { get; set; } public decimal CurMoney { get; set; } public int GrowthValue { get; set; } } }