This commit is contained in:
苏尹岚
2021-02-24 16:50:51 +08:00
parent 655300e414
commit 605a5b1d48

View File

@@ -56,7 +56,8 @@ func (c *JxOrderController) Pay4Order() {
// @Title 请求支付京西商城相关用户支付项目
// @Description 请求支付京西商城相关用户支付项目
// @Param token header string true "认证token"
// @Param thingID formData int true "项目ID"
// @Param thingID formData int fasle "项目ID"
// @Param vendorOrderID formData string fasle "订单ID"
// @Param payType formData int true "支付类型"
// @Param vendorPayType formData string true "平台支付类型"
// @Success 200 {object} controllers.CallResult
@@ -367,3 +368,17 @@ func (c *JxOrderController) ReceiveCoupons() {
return retVal, "", err
})
}
// @Title 创建门店账户订单
// @Description 创建门店账户订单
// @Param token header string true "认证token"
// @Param type formData int true "支付类型/账单类型"
// @Param orderType formData int true "订单类型1为账户充值"
// @Param storeID formData int true "门店ID"
// @Param price formData int true "支付金额"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /CreateStoreAcctOrder [post]
func (c *JxOrderController) CreateStoreAcctOrder() {
}