This commit is contained in:
苏尹岚
2020-11-05 18:21:56 +08:00
parent fd36e21197
commit f171cfc468
4 changed files with 16 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ type OrderController struct {
// @Title 支付
// @Description 支付
// @Param token header string true "认证token"
// @Param orderID formData int true "订单号"
// @Param orderID formData string true "订单号"
// @Param payType formData int true "支付平台类型"
// @Param vendorPayType formData string true "平台支付类型"
// @Success 200 {object} controllers.CallResult
@@ -28,7 +28,7 @@ func (c *OrderController) Pay() {
// @Title 提现
// @Description 提现
// @Param token header string true "认证token"
// @Param orderID formData int true "订单号"
// @Param orderID formData string true "订单号"
// @Param payType formData int true "支付平台类型"
// @Param vendorPayType formData string true "平台支付类型"
// @Success 200 {object} controllers.CallResult