KqProductRuleSet.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main1
  4. {
  5. public partial class KqProductRuleSet
  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 FeeRate { get; set; }
  20. public decimal FeeFixed { get; set; }
  21. public int FeeBindDays { get; set; }
  22. public decimal HelpSteadyFee { get; set; }
  23. public decimal HelpFee { get; set; }
  24. public int HelpMonths { get; set; }
  25. public DateTime? HelpEndDate { get; set; }
  26. public DateTime? HelpStartDate { get; set; }
  27. public decimal FlowCardDirectProfit { get; set; }
  28. public DateTime? FeeOfDays { get; set; }
  29. public decimal FlowCardFee { get; set; }
  30. public int FlowCardFreeDays { get; set; }
  31. public DateTime? FlowCardEndDate { get; set; }
  32. public DateTime? FlowCardStartDate { get; set; }
  33. public DateTime? SubsidyEndDate { get; set; }
  34. public DateTime? SubsidyStartDate { get; set; }
  35. public int BigExtendCycleDays { get; set; }
  36. public decimal BigTotalAmount { get; set; }
  37. public int PullNewExtendDays { get; set; }
  38. public DateTime? PullNewEndDate { get; set; }
  39. public DateTime? PullNewStartDate { get; set; }
  40. public int CyclePosDays { get; set; }
  41. public ulong CycleIsOther { get; set; }
  42. public DateTime? CycleEndDate { get; set; }
  43. public DateTime? CycleStartDate { get; set; }
  44. public decimal OpenStaPrize2 { get; set; }
  45. public decimal OpenStaPrize { get; set; }
  46. public decimal OpenStaTrade { get; set; }
  47. public int OpenStaDays { get; set; }
  48. public DateTime? OpenEndDate { get; set; }
  49. public DateTime? OpenStartDate { get; set; }
  50. public int ActPosCount { get; set; }
  51. public decimal ActPrize { get; set; }
  52. public decimal ActFirstDeposit { get; set; }
  53. public decimal ActFirst { get; set; }
  54. public decimal ActDeposit { get; set; }
  55. public DateTime? ActEndDate { get; set; }
  56. public DateTime? ActStartDate { get; set; }
  57. public decimal MerStaTradeForMonth { get; set; }
  58. public int MerStaMonths { get; set; }
  59. public decimal MerStaProfit { get; set; }
  60. public DateTime? MerStaEndDate { get; set; }
  61. public DateTime? MerStaStartDate { get; set; }
  62. public decimal ActivePrice { get; set; }
  63. public int ActiveCount { get; set; }
  64. public decimal Deposit { get; set; }
  65. public int OrgId { get; set; }
  66. }
  67. }