diff --git a/controllers/jx_order2.go b/controllers/jx_order2.go index 30c84bf29..c6000b44b 100644 --- a/controllers/jx_order2.go +++ b/controllers/jx_order2.go @@ -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() { + +}