mirror of
https://gitee.com/niucloud-team/niucloud
synced 2026-08-12 23:55:37 +08:00
update niucloud
This commit is contained in:
37
niucloud/core/printer/KdniaoPrinter.php
Normal file
37
niucloud/core/printer/KdniaoPrinter.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Niucloud-admin 企业快速开发的多应用管理平台
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网址:https://www.niucloud.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | niucloud团队 版权所有 开源版本可自由商用
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: Niucloud Team
|
||||
// +----------------------------------------------------------------------
|
||||
namespace core\printer;
|
||||
|
||||
|
||||
class KdniaoPrinter extends BasePrinter
|
||||
{
|
||||
|
||||
protected $config;
|
||||
|
||||
/**
|
||||
* @param array $config
|
||||
* @return void
|
||||
*/
|
||||
protected function initialize(array $config = [])
|
||||
{
|
||||
parent::initialize($config);
|
||||
$this->config = $config;
|
||||
}
|
||||
|
||||
/**
|
||||
* 打印小票
|
||||
* @param array $data
|
||||
* @return mixed|void
|
||||
*/
|
||||
public function printTicket(array $data)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user