ResourceUrlGenParamBean.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace Tool\MayouTool\Bean\Pdd\Ddk;
  3. use Tool\MayouTool\Bean\BaseBean;
  4. class ResourceUrlGenParamBean extends BaseBean
  5. {
  6. /**
  7. * 推广位ID
  8. */
  9. private $pid;
  10. /**
  11. * 自定义参数(json)
  12. */
  13. private $customParameters;
  14. /**
  15. * 是否生成拼多多福利券微信小程序推广信息
  16. */
  17. private $generateWeApp;
  18. /**
  19. * 频道来源
  20. */
  21. private $resourceType;
  22. /**
  23. * 原链接
  24. */
  25. private $url;
  26. /**
  27. * @return mixed
  28. */
  29. public function getPid()
  30. {
  31. return $this->pid;
  32. }
  33. /**
  34. * @param mixed $pid
  35. */
  36. public function setPid($pid)
  37. {
  38. $this->pid = $pid;
  39. }
  40. /**
  41. * @return mixed
  42. */
  43. public function getCustomParameters()
  44. {
  45. return $this->customParameters;
  46. }
  47. /**
  48. * @param mixed $customParameters
  49. */
  50. public function setCustomParameters($customParameters)
  51. {
  52. $this->customParameters = $customParameters;
  53. }
  54. /**
  55. * @return mixed
  56. */
  57. public function getGenerateWeApp()
  58. {
  59. return $this->generateWeApp;
  60. }
  61. /**
  62. * @param mixed $generateWeApp
  63. */
  64. public function setGenerateWeApp($generateWeApp)
  65. {
  66. $this->generateWeApp = $generateWeApp;
  67. }
  68. /**
  69. * @return mixed
  70. */
  71. public function getResourceType()
  72. {
  73. return $this->resourceType;
  74. }
  75. /**
  76. * @param mixed $resourceType
  77. */
  78. public function setResourceType($resourceType)
  79. {
  80. $this->resourceType = $resourceType;
  81. }
  82. /**
  83. * @return mixed
  84. */
  85. public function getUrl()
  86. {
  87. return $this->url;
  88. }
  89. /**
  90. * @param mixed $url
  91. */
  92. public function setUrl($url)
  93. {
  94. $this->url = $url;
  95. }
  96. }