ProfitRewardExport.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MpMainModels2
  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 int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public decimal DebitTradeProfit { get; set; }
  20. public decimal DebitTradeAmt { get; set; }
  21. public decimal NotHelpCreditTradeProfit { get; set; }
  22. public decimal NotHelpCreditTradeAmt { get; set; }
  23. public decimal HelpCreditTradeProfit { get; set; }
  24. public decimal HelpCreditTradeAmt { get; set; }
  25. public decimal NonQrCreditTradeProfit { get; set; }
  26. public decimal NonQrCreditTradeAmt { get; set; }
  27. public decimal QrCreditTradeProfit { get; set; }
  28. public decimal QrCreditTradeAmt { get; set; }
  29. public decimal CreditTradeProfit { get; set; }
  30. public decimal CreditTradeAmt { get; set; }
  31. public string BrandName { get; set; }
  32. public string DirectFlag { get; set; }
  33. public int Rank { get; set; }
  34. public int UserLevel { get; set; }
  35. public string RealName { get; set; }
  36. public string MakerCode { get; set; }
  37. public decimal ProfitCreditTradeProfit { get; set; }
  38. public decimal ProfitCreditTradeAmt { get; set; }
  39. }
  40. }