123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models
- {
- public partial class UserAccount
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public decimal WithdrawAmount { get; set; }
- public int LockStatus { get; set; }
- public int AccountStatus { get; set; }
- public decimal BalanceAmount { get; set; }
- public decimal FreezeAmount { get; set; }
- public decimal TotalAmount { get; set; }
- public int UserProperty { get; set; }
- public int UserType { get; set; }
- public int UserId { get; set; }
- public decimal TotalOverProfit { get; set; }
- public decimal TeamTotalServiceProfit { get; set; }
- public decimal TeamTotalProfit { get; set; }
- public decimal TeamTotalOverProfit { get; set; }
- public decimal TotalServiceProfit { get; set; }
- public decimal TotalProfit { get; set; }
- }
- }
|