using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsLeaderAmountLog { public int Id { get; set; } public decimal UseAmount { get; set; } public decimal BeforeWithdrawalAmount { get; set; } public decimal AfterWithdrawalAmount { get; set; } public decimal UseWithdrawalAmount { get; set; } public int ChangeType { get; set; } public int OrderId { get; set; } public int SourceUserId { get; set; } public string Remark { get; set; } public string Kind { get; set; } public string VariationCause { get; set; } public int VariationType { get; set; } public decimal Amount { get; set; } public decimal AfterAmount { get; set; } public decimal BeforeAmount { get; set; } public int UserId { get; set; } public int Version { get; set; } public int DelFlag { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }