| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace UnionOpenExchangeMediaOrderSync;
- class MediaOrderContent{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.MediaOrderContent";
- }
-
- private $authorPrice;
-
- public function setAuthorPrice($authorPrice){
- $this->params['authorPrice'] = $authorPrice;
- }
- public function getAuthorPrice(){
- return $this->authorPrice;
- }
-
- private $authorName;
-
- public function setAuthorName($authorName){
- $this->params['authorName'] = $authorName;
- }
- public function getAuthorName(){
- return $this->authorName;
- }
-
- private $authorFansNum;
-
- public function setAuthorFansNum($authorFansNum){
- $this->params['authorFansNum'] = $authorFansNum;
- }
- public function getAuthorFansNum(){
- return $this->authorFansNum;
- }
-
- private $pubTime;
-
- public function setPubTime($pubTime){
- $this->params['pubTime'] = $pubTime;
- }
- public function getPubTime(){
- return $this->pubTime;
- }
-
- private $contentId;
-
- public function setContentId($contentId){
- $this->params['contentId'] = $contentId;
- }
- public function getContentId(){
- return $this->contentId;
- }
-
- private $authorId;
-
- public function setAuthorId($authorId){
- $this->params['authorId'] = $authorId;
- }
- public function getAuthorId(){
- return $this->authorId;
- }
-
- private $authorReferencePrice;
-
- public function setAuthorReferencePrice($authorReferencePrice){
- $this->params['authorReferencePrice'] = $authorReferencePrice;
- }
- public function getAuthorReferencePrice(){
- return $this->authorReferencePrice;
- }
-
- private $pubLink;
-
- public function setPubLink($pubLink){
- $this->params['pubLink'] = $pubLink;
- }
- public function getPubLink(){
- return $this->pubLink;
- }
-
- private $contentName;
-
- public function setContentName($contentName){
- $this->params['contentName'] = $contentName;
- }
- public function getContentName(){
- return $this->contentName;
- }
-
- private $oldContentId;
-
- public function setOldContentId($oldContentId){
- $this->params['oldContentId'] = $oldContentId;
- }
- public function getOldContentId(){
- return $this->oldContentId;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|