123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace JinDouYun\Controller\Common;
- use JinDouYun\Controller\BaseController;
- use Util\Common\PartnerTools;
- use Util\Common\AgentTools;
- class ApiTestCom extends BaseController
- {
- public function __construct($isCheckAcl = true, $isMustLogin = true)
- {
- parent::__construct($isCheckAcl, $isMustLogin);
- }
- public function tool()
- {
-
- echo "企业:".$this->onlineEnterpriseId.PHP_EOL;
- $to = new AgentTools($this->onlineEnterpriseId);
-
-
-
-
-
-
-
-
-
-
- var_dump($to->runTaskNew());
-
-
-
-
- }
- }
|