utilController.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/device/model"
  5. "iot_manager_service/app/device/service"
  6. "iot_manager_service/util"
  7. "net/http"
  8. "strconv"
  9. )
  10. // 工具服务
  11. var Util = new(utilCtl)
  12. type utilCtl struct{}
  13. // GetModelList 获取厂家/品牌/型号列表
  14. // 查询类型 type:1-厂家,2-品牌,3-型号
  15. //deviceType 设备类型
  16. //0-摄像头
  17. //1 灯控
  18. //2 信息屏
  19. //3 配电箱
  20. //4 网关
  21. //5 环境监测
  22. //6 ZigBee
  23. //7 一键告警终端
  24. //8 一键告警服务端
  25. //11 桥梁传感器
  26. //12 ip音柱
  27. //13 井盖
  28. //14 垃圾桶
  29. func (c *utilCtl) GetModelList(ctx *gin.Context) {
  30. t := ctx.Query("type")
  31. d := ctx.Query("deviceType")
  32. modeType, err := strconv.Atoi(t)
  33. if err != nil || modeType < 1 || modeType > 3 {
  34. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse("type invalid", nil))
  35. return
  36. }
  37. deviceType, err := strconv.Atoi(d)
  38. if err != nil {
  39. ctx.JSON(http.StatusOK, util.ParamsInvalidResponse("deviceType invalid", nil))
  40. return
  41. }
  42. vendor, err := service.UtilService.GetDeviceVendor(modeType, deviceType)
  43. if err != nil {
  44. ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
  45. return
  46. }
  47. var result []model.VendorDetail
  48. if modeType == model.TypeVendor {
  49. result = append(result, model.VendorDetail{
  50. Id: vendor.ID,
  51. ParentId: vendor.ParentId,
  52. Vendor: vendor.VendorValue,
  53. Brand: "",
  54. Model: "",
  55. })
  56. } else if modeType == model.TypeBrand {
  57. result = append(result, model.VendorDetail{
  58. Id: vendor.ID,
  59. ParentId: vendor.ParentId,
  60. Vendor: "",
  61. Brand: vendor.VendorValue,
  62. Model: "",
  63. })
  64. } else if modeType == model.TypeModel {
  65. result = append(result, model.VendorDetail{
  66. Id: vendor.ID,
  67. ParentId: vendor.ParentId,
  68. Vendor: "",
  69. Brand: "",
  70. Model: vendor.VendorValue,
  71. })
  72. }
  73. ctx.JSON(http.StatusOK, util.SuccessResponse("", result))
  74. }
  75. func (c *utilCtl) GetTenantCode(ctx *gin.Context) {
  76. ctx.JSON(http.StatusOK, util.SuccessResponse("", nil))
  77. }