| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
- namespace UnionOpenExchangeDeviceSync;
- class DeviceInfo{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.DeviceInfo";
- }
-
- private $deviceType;
-
- public function setDeviceType($deviceType){
- $this->params['deviceType'] = $deviceType;
- }
- public function getDeviceType(){
- return $this->deviceType;
- }
-
- private $orderId;
-
- public function setOrderId($orderId){
- $this->params['orderId'] = $orderId;
- }
- public function getOrderId(){
- return $this->orderId;
- }
-
- private $requestId;
-
- public function setRequestId($requestId){
- $this->params['requestId'] = $requestId;
- }
- public function getRequestId(){
- return $this->requestId;
- }
-
- private $eventTime;
-
- public function setEventTime($eventTime){
- $this->params['eventTime'] = $eventTime;
- }
- public function getEventTime(){
- return $this->eventTime;
- }
-
- private $eventType;
-
- public function setEventType($eventType){
- $this->params['eventType'] = $eventType;
- }
- public function getEventType(){
- return $this->eventType;
- }
-
- private $deviceId;
-
- public function setDeviceId($deviceId){
- $this->params['deviceId'] = $deviceId;
- }
- public function getDeviceId(){
- return $this->deviceId;
- }
-
- private $taskId;
-
- public function setTaskId($taskId){
- $this->params['taskId'] = $taskId;
- }
- public function getTaskId(){
- return $this->taskId;
- }
-
- private $contentId;
-
- public function setContentId($contentId){
- $this->params['contentId'] = $contentId;
- }
- public function getContentId(){
- return $this->contentId;
- }
-
- private $subEventType;
-
- public function setSubEventType($subEventType){
- $this->params['subEventType'] = $subEventType;
- }
- public function getSubEventType(){
- return $this->subEventType;
- }
-
- private $eventId;
-
- public function setEventId($eventId){
- $this->params['eventId'] = $eventId;
- }
- public function getEventId(){
- return $this->eventId;
- }
-
- private $encryptType;
-
- public function setEncryptType($encryptType){
- $this->params['encryptType'] = $encryptType;
- }
- public function getEncryptType(){
- return $this->encryptType;
- }
-
- private $campaignId;
-
- public function setCampaignId($campaignId){
- $this->params['campaignId'] = $campaignId;
- }
- public function getCampaignId(){
- return $this->campaignId;
- }
-
- private $unitId;
-
- public function setUnitId($unitId){
- $this->params['unitId'] = $unitId;
- }
- public function getUnitId(){
- return $this->unitId;
- }
-
- private $creativeId;
-
- public function setCreativeId($creativeId){
- $this->params['creativeId'] = $creativeId;
- }
- public function getCreativeId(){
- return $this->creativeId;
- }
-
- private $businessType;
-
- public function setBusinessType($businessType){
- $this->params['businessType'] = $businessType;
- }
- public function getBusinessType(){
- return $this->businessType;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|