|
@@ -14,6 +14,7 @@ var Util = new(utilCtl)
|
|
|
|
|
|
type utilCtl struct{}
|
|
type utilCtl struct{}
|
|
|
|
|
|
|
|
+// GetModelList 获取厂家/品牌/型号列表
|
|
// 查询类型 type:1-厂家,2-品牌,3-型号
|
|
// 查询类型 type:1-厂家,2-品牌,3-型号
|
|
//deviceType 设备类型
|
|
//deviceType 设备类型
|
|
//0-摄像头
|
|
//0-摄像头
|
|
@@ -43,7 +44,7 @@ func (c *utilCtl) GetModelList(ctx *gin.Context) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- vendor, err := service.UtilService.Get(modeType, deviceType)
|
|
|
|
|
|
+ vendor, err := service.UtilService.GetDeviceVendor(modeType, deviceType)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
|
|
ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
|
|
return
|
|
return
|
|
@@ -76,3 +77,7 @@ func (c *utilCtl) GetModelList(ctx *gin.Context) {
|
|
}
|
|
}
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse("", result))
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse("", result))
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+func (c *utilCtl) GetTenantCode(ctx *gin.Context) {
|
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse("", nil))
|
|
|
|
+}
|