支付路径问题
This commit is contained in:
parent
d5977bcd17
commit
4189c991a1
|
|
@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|||
* @description
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/admin/pay")
|
||||
@RequestMapping("/pay")
|
||||
public class PayController {
|
||||
@Resource
|
||||
private PayService payService;
|
||||
|
|
|
|||
|
|
@ -47,24 +47,30 @@ public class OrderInfoQueryDTO implements Serializable {
|
|||
private String tableName;
|
||||
|
||||
/**
|
||||
* 发货类型post快递,takeaway外卖,takeself,自提table---堂食
|
||||
*/
|
||||
private String sendType;
|
||||
|
||||
/**
|
||||
* 订单类型-cash收银-miniapp小程序-offline线下
|
||||
* 订单类型-cash收银(除小程序以外 都属于收银) miniapp小程序
|
||||
*/
|
||||
private String orderType;
|
||||
/**
|
||||
* 平台类型 pc 收银机客户端 wechat 微信小程序 alipay 支付宝小程序 admin-pc PC管理端 admin-app APP管理端
|
||||
*/
|
||||
private String platformType;
|
||||
|
||||
|
||||
/**
|
||||
* dineMode 用餐模式 堂食 dine-in 外带 take-out 外卖 take-away
|
||||
*/
|
||||
private String sendType;
|
||||
/**
|
||||
* 支付类型
|
||||
* 主扫 main-scan
|
||||
* 被扫 back-scan
|
||||
* 微信小程序 wechat-mini
|
||||
* 支付宝小程序 alipay-mini
|
||||
* 会员支付 vip-pay
|
||||
* 现金支付 cash-pay
|
||||
*/
|
||||
private String payType;
|
||||
|
||||
/**
|
||||
* 平台类型
|
||||
*/
|
||||
private String platformType;
|
||||
|
||||
/**
|
||||
* 状态: unpaid-待支付;in-production 制作中;wait-out 待取餐;;done-订单完成;refunding-申请退单;refund-退单;part-refund 部分退单;cancelled-取消订单
|
||||
|
|
|
|||
Loading…
Reference in New Issue