using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class KxsPartnerAmountLog { public int Id { get; set; } public decimal AfterTotalAmount { get; set; } public int ChangeType { get; set; } public decimal AfterWithdrawalAmount { get; set; } public decimal AfterStoreAmount { get; set; } public decimal UseWithdrawalAmount { get; set; } public decimal UseTotalAmount { get; set; } public decimal UseStoreAmount { 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; } } }