dict.go 485 B

12345678910111213141516171819202122
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/system/service"
  5. "iot_manager_service/util/common"
  6. "net/http"
  7. )
  8. var Dict = new(dict)
  9. type dict struct{}
  10. func (c *dict) Dictionary(ctx *gin.Context) {
  11. code := ctx.Query("code")
  12. result, err := service.DictService.GetByCode(code)
  13. if err != nil {
  14. ctx.JSON(http.StatusOK, common.FailResponse(err.Error(), nil))
  15. return
  16. }
  17. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Success, result))
  18. }