From 8f5288c771f8b2b359d60fb260f22aacdd5b1748 Mon Sep 17 00:00:00 2001 From: gazebo Date: Mon, 3 Sep 2018 18:30:32 +0800 Subject: [PATCH] - fix toke to token. --- controllers/jx_order.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/controllers/jx_order.go b/controllers/jx_order.go index db18e447b..34a721845 100644 --- a/controllers/jx_order.go +++ b/controllers/jx_order.go @@ -30,7 +30,7 @@ func (c *OrderController) URLMapping() { // @Title 完成拣货 // @Description 完成拣货 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID formData string true "订单ID" // @Param vendorID formData int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult @@ -45,7 +45,7 @@ func (c *OrderController) FinishedPickup() { // @Title 转自送 // @Description 转自送,对于配送类型为纯自送的,就是表示自送开始 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID formData string true "订单ID" // @Param vendorID formData int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult @@ -60,7 +60,7 @@ func (c *OrderController) SelfDelivering() { // @Title 自送送达 // @Description 自送送达 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID formData string true "订单ID" // @Param vendorID formData int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult @@ -75,7 +75,7 @@ func (c *OrderController) SelfDelivered() { // @Title 创建三方运单 // @Description 创建三方运单 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID formData string true "订单ID" // @Param vendorID formData int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult @@ -90,7 +90,7 @@ func (c *OrderController) CreateWaybillOnProviders() { // @Title 得到门店订单信息 // @Description 得到门店订单信息 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param storeID query string true "京西门店ID" // @Param lastHours query int false "最近多少小时的信息(缺省为两天)" // @Success 200 {object} controllers.CallResult @@ -105,7 +105,7 @@ func (c *OrderController) GetStoreOrderCountInfo() { // @Title 得到门店订单状态信息 // @Description 得到门店订单状态信息 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param storeID query string true "京西门店ID" // @Param lastHours query int false "最近多少小时的信息(缺省为两天)" // @Param fromStatus query int true "起始状态(包括)" @@ -124,7 +124,7 @@ func (c *OrderController) GetStoreOrderInfo() { // @Title 得到订单SKU信息 // @Description 得到订单SKU信息 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID query string true "订单ID" // @Param vendorID query int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult @@ -139,7 +139,7 @@ func (c *OrderController) GetOrderSkuInfo() { // @Title 得到订单详情 // @Description 得到订单详情 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID query string true "订单ID" // @Param vendorID query int true "订单所属的厂商ID" // @Param refresh query bool false "是否从购物平台刷新数据" @@ -155,7 +155,7 @@ func (c *OrderController) GetOrderInfo() { // @Title 得到订单运单信息 // @Description 得到订单运单信息 -// @Param token header string true "认证toke" +// @Param token header string true "认证token" // @Param vendorOrderID query string true "订单ID" // @Param vendorID query int true "订单所属的厂商ID" // @Success 200 {object} controllers.CallResult