KxsShdTradeAmt.cs 646 B

1234567891011121314151617181920
  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. }
  19. }