KxsLeaderAccountLog.cs 946 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsLeaderAccountLog
  6. {
  7. public int Id { get; set; }
  8. public int TradeDate { get; set; }
  9. public int TradeMonth { get; set; }
  10. public int DataId { get; set; }
  11. public int ChangeType { get; set; }
  12. public int SourceUserId { get; set; }
  13. public string Remark { get; set; }
  14. public string Kind { get; set; }
  15. public string VariationCause { get; set; }
  16. public int VariationType { get; set; }
  17. public decimal Amount { get; set; }
  18. public decimal AfterAmount { get; set; }
  19. public decimal BeforeAmount { get; set; }
  20. public int UserId { get; set; }
  21. public int Version { get; set; }
  22. public int DelFlag { get; set; }
  23. public DateTime? UpdateTime { get; set; }
  24. public DateTime? CreateTime { get; set; }
  25. }
  26. }