修改查询列车尺寸接口

This commit is contained in:
weizhihong 2023-08-25 16:39:05 +08:00
parent 8d8a37de90
commit 6b3738ae8f
2 changed files with 9 additions and 9 deletions

View File

@ -14,7 +14,7 @@ import (
func InitProjectLinkRouter(api *gin.RouterGroup, authMiddleware *jwt.GinJWTMiddleware) {
authed := api.Group("/v1/projectLink").Use(authMiddleware.MiddlewareFunc())
authed.GET("/info/:id", queryProjectLinkInfo)
authed.GET("/trainSize/:id", queryProjectTrainSizeInfo)
authed.GET("/mapInfo/trainSize/:id", queryTrainSizeByMapId)
authed.POST("", saveProjectLinkInfo)
}
@ -45,23 +45,23 @@ func queryProjectLinkInfo(c *gin.Context) {
c.JSON(http.StatusOK, service.QueryProjectLinkInfo(int32(int64Id)))
}
// 查询项目的关联列车尺寸信息
// 通过地图ID查询项目的关联列车尺寸信息
//
// @Summary 查询项目的关联列车尺寸信息
// @Summary 通过地图ID查询项目的关联列车尺寸信息
//
// @Security JwtAuth
//
// @Description 查询项目的关联列车尺寸信息
// @Description 通过地图ID查询项目的关联列车尺寸信息
// @Tags 项目关联信息Api
// @Accept json
// @Produce json
// @Param id path int true "项目ID"
// @Param id path int true "地图ID"
// @Success 200 {object} dto.TrainSizeDto
// @Failure 401 {object} dto.ErrorDto
// @Failure 404 {object} dto.ErrorDto
// @Failure 500 {object} dto.ErrorDto
// @Router /api/v1/projectLink/trainSize/:id [get]
func queryProjectTrainSizeInfo(c *gin.Context) {
// @Router /api/v1/projectLink/mapInfo/trainSize/:id [get]
func queryTrainSizeByMapId(c *gin.Context) {
id, exist := c.Params.Get("id")
if !exist {
c.JSON(http.StatusBadRequest, "必要参数id不存在")

View File

@ -53,7 +53,7 @@ func pageQueryTrainModel(c *gin.Context) {
zap.S().Warn("分页查询参数绑定错误,使用默认参数", err)
req.Default()
}
zap.S().Debug("分页查列车组次参数", req)
zap.S().Debug("分页查列车信号参数", req)
page, err := service.PageTrainModelQuery(&req)
if err != nil {
c.JSON(http.StatusInternalServerError, err.Error())
@ -363,7 +363,7 @@ func pageQueryTrainWheelDiameter(c *gin.Context) {
zap.S().Warn("分页查询参数绑定错误,使用默认参数", err)
req.Default()
}
zap.S().Debug("分页查列车尺寸参数", req)
zap.S().Debug("分页查列车轮径参数", req)
page, err := service.PageTrainWheelDiameterQuery(&req)
if err != nil {
c.JSON(http.StatusInternalServerError, err.Error())