multi-store/extend/Xpyun/model/PrintRequest.php
mkm b51e352305 feat(admin): 优化订单相关功能
- 优化预先订单购物车信息列表的搜索功能,增加按店铺名称搜索
- 优化仓库订单列表的搜索条件,增加按订单ID搜索
- 修复仓库订单逻辑中获取订单类型的问题
- 在 API 控制器中添加 XpsdkPrintApi 服务的引用
2024-11-18 14:08:41 +08:00

45 lines
728 B
PHP
Raw 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
namespace Xpyun\model;
class PrintRequest extends RestRequest
{
/**
* 打印机编号
*/
var $sn;
/**
* 打印内容,不能超过5000字节
*/
var $content;
/**
* 打印份数默认为1
*/
var $copies = 1;
/**
* 打印模式默认为0
*/
var $mode = 0;
/**
* 支付方式41~55支付宝 微信 ...
*/
var $payType;
/**
* 支付与否59~61退款 到账 消费
*/
var $payMode;
/**
* 支付金额
*/
var $money;
/**
* 声音播放模式0 为取消订单模式1 为静音模式2 为来单播放模式,默认为 2 来单播放模式
*/
var $voice = 2;
}
?>