加密后的代码
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.

ExpressPrintService.php 619B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Api;
  3. class ExpressPrintService extends RpcService{
  4. /**
  5. *面单打印接口
  6. *不支持机型: k4-wh, k4-wa, m1 (k4系列机型不建议使用不干胶热敏纸)
  7. *
  8. * @param $machineCode
  9. * @param $content
  10. * @param $originId
  11. * @param int $sandbox
  12. * @return mixed
  13. * @throws \Exception
  14. */
  15. public function index($machineCode, $content, $originId, $sandbox = 0)
  16. {
  17. return $this->client->call('expressprint/index', array('machine_code' => $machineCode, 'content' => $content, 'origin_id' => $originId, 'sandbox' => $sandbox));
  18. }
  19. }