multi-store/app/common/service/xpyun/XpsdkOtherApi.php

24 lines
325 B
PHP
Raw Normal View History

<?php
namespace app\common\service\xpyun;
use Xpyun\service\PrintService;
/**
* Class XpsdkOtherApi
* 打印机管理
*/
class XpsdkOtherApi
{
/**
* 打印服务对象实例化
*/
private $service;
public function __construct()
{
$this->service = new PrintService();
}
}