|
|
@@ -10,15 +10,10 @@ import (
|
|
|
"github.com/gin-gonic/gin"
|
|
|
)
|
|
|
|
|
|
-type GetTouristGoodsRsp struct {
|
|
|
- TradeGoods []models.TouristGoods // 交易商品列表
|
|
|
- ReferenceGoods []models.TouristGoods // 参考商品列表
|
|
|
-}
|
|
|
-
|
|
|
// GetTouristGoods 获取水贝亿爵游客商品列表
|
|
|
// @Summary 获取水贝亿爵游客商品列表
|
|
|
// @Produce json
|
|
|
-// @Success 200 {object} GetTouristGoodsRsp
|
|
|
+// @Success 200 {array} models.TouristGoods
|
|
|
// @Failure 500 {object} app.Response
|
|
|
// @Router /sbyj/GetTouristGoods [get]
|
|
|
// @Tags 水贝亿爵
|
|
|
@@ -26,14 +21,7 @@ func GetTouristGoods(c *gin.Context) {
|
|
|
appG := app.Gin{C: c}
|
|
|
|
|
|
// 获取数据
|
|
|
- tradeGoods, err := models.GetTouristGoods([]int{52})
|
|
|
- if err != nil {
|
|
|
- // 查询失败
|
|
|
- logger.GetLogger().Errorf("GetTouristGoods failed: %s", err.Error())
|
|
|
- appG.Response(http.StatusBadRequest, e.ERROR_QUERY_FAIL, nil)
|
|
|
- return
|
|
|
- }
|
|
|
- referenceGoods, err := models.GetTouristGoods([]int{99})
|
|
|
+ goodses, err := models.GetTouristGoods([]int{52, 99})
|
|
|
if err != nil {
|
|
|
// 查询失败
|
|
|
logger.GetLogger().Errorf("GetTouristGoods failed: %s", err.Error())
|
|
|
@@ -42,5 +30,5 @@ func GetTouristGoods(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
// 查询成功返回
|
|
|
- appG.Response(http.StatusOK, e.SUCCESS, GetTouristGoodsRsp{TradeGoods: tradeGoods, ReferenceGoods: referenceGoods})
|
|
|
+ appG.Response(http.StatusOK, e.SUCCESS, goodses)
|
|
|
}
|