ProfitRewardExport.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models
  4. {
  5. public partial class ProfitRewardExport
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string SeoTitle { get; set; }
  14. public string SeoKeyword { get; set; }
  15. public string SeoDescription { get; set; }
  16. public decimal DebitTradeProfit { get; set; }
  17. public decimal DebitTradeAmt { get; set; }
  18. public decimal NotHelpCreditTradeProfit { get; set; }
  19. public decimal NotHelpCreditTradeAmt { get; set; }
  20. public decimal HelpCreditTradeProfit { get; set; }
  21. public decimal HelpCreditTradeAmt { get; set; }
  22. public decimal NonQrCreditTradeProfit { get; set; }
  23. public decimal NonQrCreditTradeAmt { get; set; }
  24. public decimal QrCreditTradeProfit { get; set; }
  25. public decimal QrCreditTradeAmt { get; set; }
  26. public decimal CreditTradeProfit { get; set; }
  27. public decimal CreditTradeAmt { get; set; }
  28. public string BrandName { get; set; }
  29. public string DirectFlag { get; set; }
  30. public int Rank { get; set; }
  31. public int UserLevel { get; set; }
  32. public string RealName { get; set; }
  33. public string MakerCode { get; set; }
  34. }
  35. }