using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsShdLeader { public int Id { get; set; } public int ShdType { get; set; } public decimal SourceBonusAmt { get; set; } public int SourceUserId { get; set; } public int UserId { get; set; } public decimal TradeAmt { 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; } public int TradeMonth { get; set; } } }