using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsUserTradeInfo { public long Id { get; set; } public int RequiredCountSelf { get; set; } public int IsVip { get; set; } public decimal TradeAmtExt { get; set; } public int VipCount { get; set; } public decimal LevelIndex { get; set; } public decimal TradeAmtSelf { get; set; } public decimal TradeAmt { get; set; } public int UserId { get; set; } public int TradeMonth { get; set; } public string UpdateBy { get; set; } public string CreateBy { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }