1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.OpModels
- {
- 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 WithdrawingAmount { get; set; }
- public decimal ValidAmount { get; set; }
- public decimal TotalAmount { get; set; }
- public decimal WithdrawAmount { get; set; }
- public int AccountStatus { get; set; }
- public decimal BalanceAmount { get; set; }
- public decimal FreezeAmount { get; set; }
- public decimal TotalAmt { get; set; }
- public int UserId { get; set; }
- public decimal PosCouponApplyAmount { get; set; }
- public decimal ValidForGetAmount { get; set; }
- }
- }
|