暂时存一下

This commit is contained in:
苏尹岚
2020-08-20 17:32:16 +08:00
parent 08ddd8424c
commit 97c3fc87cc
4 changed files with 51 additions and 2 deletions

View File

@@ -48,6 +48,21 @@ func (c *JxOrderController) Pay4Order() {
})
}
// @Title 请求支付京西商城相关用户支付项目
// @Description 请求支付京西商城相关用户支付项目
// @Param token header string true "认证token"
// @Param thingID formData int true "项目ID"
// @Param payType formData int true "支付类型"
// @Param vendorPayType formData string true "平台支付类型"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /Pay4User [post]
func (c *JxOrderController) Pay4User() {
c.callPay4User(func(params *tJxorderPay4UserParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}
// @Title 买家取消(或申请取消)订单
// @Description 买家取消(或申请取消)订单
// @Param token header string true "认证token"