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

PrintService.php 549B

12345678910111213141516171819
  1. <?php
  2. namespace App\Api;
  3. class PrintService extends RpcService{
  4. /**
  5. * 打印接口
  6. *
  7. * @param $machineCode string 机器码
  8. * @param $content string 打印内容
  9. * @param $originId string 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母
  10. * @return mixed
  11. */
  12. public function index($machineCode, $content, $originId)
  13. {
  14. return $this->client->call('print/index', array('machine_code' => $machineCode, 'content' => $content, 'origin_id' => $originId));
  15. }
  16. }