12345678910111213141516171819 |
- <?php
-
- namespace App\Api;
-
- class PrintMenuService extends RpcService{
-
-
-
- public function addPrintMenu($machineCode, $content)
- {
- return $this->client->call('printmenu/addprintmenu', array('machine_code' => $machineCode, 'content' => $content));
- }
-
- }
|