30 lines
288 B
PHP
30 lines
288 B
PHP
<?php
|
|
|
|
/**
|
|
* 请求
|
|
* @author auto create
|
|
*/
|
|
class CloudPrinterPrintRequest
|
|
{
|
|
|
|
/**
|
|
* 自定义内容
|
|
**/
|
|
public $custom_data;
|
|
|
|
/**
|
|
* 打印数据
|
|
**/
|
|
public $print_data;
|
|
|
|
/**
|
|
* 共享码
|
|
**/
|
|
public $share_code;
|
|
|
|
/**
|
|
* 打印机 id
|
|
**/
|
|
public $uid;
|
|
}
|
|
?>
|