MediaDtOrder.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. namespace UnionOpenExchangeMediaDtorderSync;
  3. class MediaDtOrder{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.MediaDtOrder";
  7. }
  8. private $bvId;
  9. public function setBvId($bvId){
  10. $this->params['bvId'] = $bvId;
  11. }
  12. public function getBvId(){
  13. return $this->bvId;
  14. }
  15. private $promotionPurposeType;
  16. public function setPromotionPurposeType($promotionPurposeType){
  17. $this->params['promotionPurposeType'] = $promotionPurposeType;
  18. }
  19. public function getPromotionPurposeType(){
  20. return $this->promotionPurposeType;
  21. }
  22. private $creativeName;
  23. public function setCreativeName($creativeName){
  24. $this->params['creativeName'] = $creativeName;
  25. }
  26. public function getCreativeName(){
  27. return $this->creativeName;
  28. }
  29. private $unitName;
  30. public function setUnitName($unitName){
  31. $this->params['unitName'] = $unitName;
  32. }
  33. public function getUnitName(){
  34. return $this->unitName;
  35. }
  36. private $campaignId;
  37. public function setCampaignId($campaignId){
  38. $this->params['campaignId'] = $campaignId;
  39. }
  40. public function getCampaignId(){
  41. return $this->campaignId;
  42. }
  43. private $authorFansNum;
  44. public function setAuthorFansNum($authorFansNum){
  45. $this->params['authorFansNum'] = $authorFansNum;
  46. }
  47. public function getAuthorFansNum(){
  48. return $this->authorFansNum;
  49. }
  50. private $authorId;
  51. public function setAuthorId($authorId){
  52. $this->params['authorId'] = $authorId;
  53. }
  54. public function getAuthorId(){
  55. return $this->authorId;
  56. }
  57. private $creativeId;
  58. public function setCreativeId($creativeId){
  59. $this->params['creativeId'] = $creativeId;
  60. }
  61. public function getCreativeId(){
  62. return $this->creativeId;
  63. }
  64. private $accountId;
  65. public function setAccountId($accountId){
  66. $this->params['accountId'] = $accountId;
  67. }
  68. public function getAccountId(){
  69. return $this->accountId;
  70. }
  71. private $authorName;
  72. public function setAuthorName($authorName){
  73. $this->params['authorName'] = $authorName;
  74. }
  75. public function getAuthorName(){
  76. return $this->authorName;
  77. }
  78. private $unitId;
  79. public function setUnitId($unitId){
  80. $this->params['unitId'] = $unitId;
  81. }
  82. public function getUnitId(){
  83. return $this->unitId;
  84. }
  85. private $campaignName;
  86. public function setCampaignName($campaignName){
  87. $this->params['campaignName'] = $campaignName;
  88. }
  89. public function getCampaignName(){
  90. return $this->campaignName;
  91. }
  92. private $taskId;
  93. public function setTaskId($taskId){
  94. $this->params['taskId'] = $taskId;
  95. }
  96. public function getTaskId(){
  97. return $this->taskId;
  98. }
  99. private $promotionPurposeText;
  100. public function setPromotionPurposeText($promotionPurposeText){
  101. $this->params['promotionPurposeText'] = $promotionPurposeText;
  102. }
  103. public function getPromotionPurposeText(){
  104. return $this->promotionPurposeText;
  105. }
  106. function getInstance(){
  107. return $this->params;
  108. }
  109. }
  110. ?>