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

27 lines
347 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 VoiceRequest extends RestRequest
{
/**
* 打印机编号
*/
var $sn;
/**
* 支付方式41~55支付宝 微信 ...
*/
var $payType;
/**
* 支付与否59~61退款 到账 消费
*/
var $payMode;
/**
* 支付金额
*/
var $money;
}
?>