加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrintMenuService.php 436B

12345678910111213141516171819
  1. <?php
  2. namespace App\Api;
  3. class PrintMenuService extends RpcService{
  4. /**
  5. * 添加应用菜单接口
  6. *
  7. * @param $machineCode string 机器码
  8. * @param $content string 菜单详情(json)
  9. * @return mixed
  10. */
  11. public function addPrintMenu($machineCode, $content)
  12. {
  13. return $this->client->call('printmenu/addprintmenu', array('machine_code' => $machineCode, 'content' => $content));
  14. }
  15. }