添加网站文件
This commit is contained in:
19
vendor/yly-openapi/yly-openapi-sdk/Lib/Api/PrintService.php
vendored
Normal file
19
vendor/yly-openapi/yly-openapi-sdk/Lib/Api/PrintService.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Api;
|
||||
|
||||
class PrintService extends RpcService{
|
||||
|
||||
/**
|
||||
* 打印接口
|
||||
*
|
||||
* @param $machineCode string 机器码
|
||||
* @param $content string 打印内容
|
||||
* @param $originId string 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母
|
||||
* @return mixed
|
||||
*/
|
||||
public function index($machineCode, $content, $originId)
|
||||
{
|
||||
return $this->client->call('print/index', array('machine_code' => $machineCode, 'content' => $content, 'origin_id' => $originId));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user