| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package common
- import (
- "mtp2_if/global/app"
- "mtp2_if/global/e"
- "mtp2_if/logger"
- "mtp2_if/models"
- "net/http"
- "github.com/gin-gonic/gin"
- )
- // QueryErrorInfosReq 获取资讯标题列表请求参数
- type QueryNewTitlesReq struct {
- COLUMNID int `form:"columnid"` // 所属栏目
- }
- // QueryErrorInfos 取资讯标题列表
- // @Summary 取资讯标题列表
- // @Produce json
- // @Param columnid query int false "所属栏目"
- // @Success 200 {object} models.QueryErrorInfosRsp
- // @Failure 500 {object} app.Response
- // @Router /Common/QueryErrorInfos [get]
- // @Tags 通用服务
- func QueryNewTitles(c *gin.Context) {
- appG := app.Gin{C: c}
- // 获取请求参数
- var req QueryErrorInfosReq
- if err := appG.C.ShouldBindQuery(&req); err != nil {
- logger.GetLogger().Errorf("QueryErrorInfos failed: %s", err.Error())
- appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, nil)
- return
- }
- errorCodes, err := models.GetErrorInfos(req.RowNumber)
- if err != nil {
- // 查询失败
- logger.GetLogger().Errorf("QueryErrorInfos failed: %s", err.Error())
- appG.Response(http.StatusBadRequest, e.ERROR_QUERY_FAIL, nil)
- return
- }
- // 查询成功
- appG.Response(http.StatusOK, e.SUCCESS, errorCodes)
- }
|