using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsShdTradeAmt { public int Id { get; set; } public decimal HighBonus { get; set; } public decimal CenterBonus { get; set; } public decimal FirstBonus { get; set; } public decimal BonusPool { get; set; } public string TradeMonth { get; set; } public decimal TradeAmt { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }