zx/crmeb/services/PrinterService.php

65 lines
1.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace crmeb\services;
use crmeb\services\printer\AccessToken;
use crmeb\basic\BaseStorage;
/**
* Class BasePrinter
* @package crmeb\basic
*/
abstract class PrinterService extends BaseStorage
{
/**
* token句柄
* @var AccessToken
*/
protected $accessToken;
/**
* 打印内容
* @var string
*/
protected $printerContent;
/**
* BasePrinter constructor.
* @param string $name
* @param AccessToken $accessToken
* @param string $configFile
*/
public function __construct(string $name, AccessToken $accessToken, string $configFile)
{
$this->accessToken = $accessToken;
$this->initialize([]);
}
/**
* 开始打印
* @param array|null $systemConfig
* @return mixed
*/
abstract public function startPrinter();
/**
* 设置打印内容
* @param array $config
* @return mixed
*/
abstract public function setPrinterContent(array $config);
}