chengkun
2025-05-20 f6f7bd25619ad0c0dfb5e609332e9fa1db419386
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
27
28
29
30
<?php
require_once(dirname(__FILE__) . '/' . '../GTApiRequest.php');
 
class GTTagSetRequest extends GTApiRequest{
    //用户标识
    private $cid;
    //标签列表,标签中不能包含空格
    private $customTag;
 
    public function getCid()
    {
        return $this->cid;
    }
 
    public function setCid($cid)
    {
        $this->cid = $cid;
    }
 
    public function getCustomTag()
    {
        return $this->customTag;
    }
 
    public function setCustomTag($customTag)
    {
        $this->customTag = $customTag;
        $this->apiParam["custom_tag"] = $this->customTag;
    }
}