using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsUserProfitLkb { public int Id { get; set; } public int IsTeam { get; set; } public int TradeType { get; set; } public string Remark { get; set; } public int ProfitMonth { get; set; } public int Status { get; set; } public decimal ProfitAmt { get; set; } public int UserId { get; set; } public int Version { get; set; } public string DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }