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

PicturePrintService.php 630B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Api;
  3. class PicturePrintService extends RpcService{
  4. /**
  5. * 图形打印接口
  6. * 不支持机型: k4-wh, k4-wa, m1
  7. *
  8. * @param $machineCode string 机器码
  9. * @param $pictureUrl string 图片链接地址
  10. * @param $originId string 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母
  11. * @return mixed
  12. */
  13. public function index($machineCode, $pictureUrl, $originId)
  14. {
  15. return $this->client->call('pictureprint/index', array('machine_code' => $machineCode, 'picture_url' => $pictureUrl, 'origin_id' => $originId));
  16. }
  17. }