| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- namespace UnionOpenExchangeMediaDtorderSync;
- class MediaDtOrder{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.MediaDtOrder";
- }
-
- private $bvId;
-
- public function setBvId($bvId){
- $this->params['bvId'] = $bvId;
- }
- public function getBvId(){
- return $this->bvId;
- }
-
- private $promotionPurposeType;
-
- public function setPromotionPurposeType($promotionPurposeType){
- $this->params['promotionPurposeType'] = $promotionPurposeType;
- }
- public function getPromotionPurposeType(){
- return $this->promotionPurposeType;
- }
-
- private $creativeName;
-
- public function setCreativeName($creativeName){
- $this->params['creativeName'] = $creativeName;
- }
- public function getCreativeName(){
- return $this->creativeName;
- }
-
- private $unitName;
-
- public function setUnitName($unitName){
- $this->params['unitName'] = $unitName;
- }
- public function getUnitName(){
- return $this->unitName;
- }
-
- private $campaignId;
-
- public function setCampaignId($campaignId){
- $this->params['campaignId'] = $campaignId;
- }
- public function getCampaignId(){
- return $this->campaignId;
- }
-
- private $authorFansNum;
-
- public function setAuthorFansNum($authorFansNum){
- $this->params['authorFansNum'] = $authorFansNum;
- }
- public function getAuthorFansNum(){
- return $this->authorFansNum;
- }
-
- private $authorId;
-
- public function setAuthorId($authorId){
- $this->params['authorId'] = $authorId;
- }
- public function getAuthorId(){
- return $this->authorId;
- }
-
- private $creativeId;
-
- public function setCreativeId($creativeId){
- $this->params['creativeId'] = $creativeId;
- }
- public function getCreativeId(){
- return $this->creativeId;
- }
-
- private $accountId;
-
- public function setAccountId($accountId){
- $this->params['accountId'] = $accountId;
- }
- public function getAccountId(){
- return $this->accountId;
- }
-
- private $authorName;
-
- public function setAuthorName($authorName){
- $this->params['authorName'] = $authorName;
- }
- public function getAuthorName(){
- return $this->authorName;
- }
-
- private $unitId;
-
- public function setUnitId($unitId){
- $this->params['unitId'] = $unitId;
- }
- public function getUnitId(){
- return $this->unitId;
- }
-
- private $campaignName;
-
- public function setCampaignName($campaignName){
- $this->params['campaignName'] = $campaignName;
- }
- public function getCampaignName(){
- return $this->campaignName;
- }
-
- private $taskId;
-
- public function setTaskId($taskId){
- $this->params['taskId'] = $taskId;
- }
- public function getTaskId(){
- return $this->taskId;
- }
-
- private $promotionPurposeText;
-
- public function setPromotionPurposeText($promotionPurposeText){
- $this->params['promotionPurposeText'] = $promotionPurposeText;
- }
- public function getPromotionPurposeText(){
- return $this->promotionPurposeText;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|