1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <?php
| require_once(dirname(__FILE__) . '/' . 'GTUps.php');
|
| class GTAndroid extends GTApiRequest
| {
| //android厂商通道推送消息内容
| private $ups;
|
| public function getUps()
| {
| return $this->ups;
| }
|
| public function setUps($ups)
| {
| $this->ups = $ups;
| }
|
| public function getApiParam()
| {
| if ($this->ups != null){
| $this->apiParam["ups"] = $this->ups->getApiParam();
| }
| return $this->apiParam;
| }
| }
|
|