KxsShdTradeAmt.cs 854 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsShdTradeAmt
  6. {
  7. public int Id { get; set; }
  8. public decimal HighBonus { get; set; }
  9. public decimal CenterBonus { get; set; }
  10. public decimal FirstBonus { get; set; }
  11. public decimal BonusPool { get; set; }
  12. public string TradeMonth { get; set; }
  13. public decimal TradeAmt { get; set; }
  14. public int Version { get; set; }
  15. public string DelFlag { get; set; }
  16. public DateTime? UpdateTime { get; set; }
  17. public DateTime? CreateTime { get; set; }
  18. public decimal EyasTradeAmt { get; set; }
  19. public decimal EyasBonusPool { get; set; }
  20. public decimal PrivateTradeAmt { get; set; }
  21. public decimal PrivateBonusPool { get; set; }
  22. }
  23. }