terry 2 лет назад
Родитель
Сommit
0d52415990

+ 78 - 0
app/device/controller/utilController.go

@@ -0,0 +1,78 @@
+package controller
+
+import (
+	"github.com/gin-gonic/gin"
+	"iot_manager_service/app/device/model"
+	"iot_manager_service/app/device/service"
+	"iot_manager_service/util"
+	"net/http"
+	"strconv"
+)
+
+// 工具服务
+var Util = new(utilCtl)
+
+type utilCtl struct{}
+
+// 查询类型 type:1-厂家,2-品牌,3-型号
+//deviceType 设备类型
+//0-摄像头
+//1 灯控
+//2 信息屏
+//3 配电箱
+//4  网关
+//5  环境监测
+//6  ZigBee
+//7  一键告警终端
+//8 一键告警服务端
+//11 桥梁传感器
+//12 ip音柱
+//13 井盖
+//14 垃圾桶
+func (c *utilCtl) GetModelList(ctx *gin.Context) {
+	t := ctx.Query("type")
+	d := ctx.Query("deviceType")
+	modeType, err := strconv.Atoi(t)
+	if err != nil || modeType < 1 || modeType > 3 {
+		ctx.JSON(http.StatusOK, util.ParamsInvalidResponse("type invalid", nil))
+		return
+	}
+	deviceType, err := strconv.Atoi(d)
+	if err != nil {
+		ctx.JSON(http.StatusOK, util.ParamsInvalidResponse("deviceType invalid", nil))
+		return
+	}
+
+	vendor, err := service.UtilService.Get(modeType, deviceType)
+	if err != nil {
+		ctx.JSON(http.StatusOK, util.FailResponse(err.Error(), nil))
+		return
+	}
+	var result []model.VendorDetail
+	if modeType == model.TypeVendor {
+		result = append(result, model.VendorDetail{
+			Id:       vendor.ID,
+			ParentId: vendor.ParentId,
+			Vendor:   vendor.VendorValue,
+			Brand:    "",
+			Model:    "",
+		})
+	} else if modeType == model.TypeBrand {
+		result = append(result, model.VendorDetail{
+			Id:       vendor.ID,
+			ParentId: vendor.ParentId,
+			Vendor:   "",
+			Brand:    vendor.VendorValue,
+			Model:    "",
+		})
+	} else if modeType == model.TypeModel {
+		result = append(result, model.VendorDetail{
+			Id:       vendor.ID,
+			ParentId: vendor.ParentId,
+			Vendor:   "",
+			Brand:    "",
+			Model:    vendor.VendorValue,
+		})
+	}
+	ctx.JSON(http.StatusOK, util.SuccessResponse("", result))
+}

+ 1 - 0
app/device/dao/common.go

@@ -40,6 +40,7 @@ func InitDB(db *gorm.DB) {
 		&TimeCondition{},
 		&LightStrategy{},
 		&LightCondition{},
+		&DeviceVendor{},
 	).Error
 	if err != nil {
 		panic(fmt.Sprintf("AutoMigrate err : %v", err))

+ 29 - 0
app/device/dao/venderDao.go

@@ -0,0 +1,29 @@
+package dao
+
+import (
+	"time"
+)
+
+// DeviceVendor 厂家
+type DeviceVendor struct {
+	ID          int       `gorm:"primary_key" json:"id"`                //编号
+	VendorType  int       `gorm:"int" json:"vendorType"`                //类型:1-厂家名称,2-品牌,3-型号
+	VendorValue string    `gorm:"type:varchar(200)" json:"vendorValue"` //值
+	ParentId    int       `gorm:"type:int" json:"parentId"`             //父id,厂家为-1
+	DeviceType  int       `gorm:"type:int" json:"deviceType"`           //设备类型
+	TenantId    string    `gorm:"type:varchar(12)" json:"tenantId"`     //租户id
+	CreateTime  time.Time `gorm:"type:datetime" json:"createTime"`      //新增时间
+	CreateUser  string    `gorm:"type:varchar(60)" json:"createUser"`   //新增记录操作用户ID
+	UpdateTime  time.Time `gorm:"type:datetime" json:"updateTime"`      //修改时间
+	UpdateUser  string    `gorm:"type:varchar(60)" json:"updateUser"`   //修改用户
+	IsDeleted   int       `gorm:"type:int" json:"isDeleted"`            //是否删除 0=未删除,1=删除
+}
+
+func (DeviceVendor) TableName() string {
+	return "dev_vendor"
+}
+
+func (c *DeviceVendor) GetByType() error {
+	err := Db.Debug().Model(&c).Where(" vendor_type = ? and device_type = ?", c.VendorType, c.DeviceType).Find(&c).Error
+	return err
+}

+ 15 - 0
app/device/model/util.go

@@ -0,0 +1,15 @@
+package model
+
+const (
+	TypeVendor = 1 //厂商
+	TypeBrand  = 2 //品牌
+	TypeModel  = 3 //型号
+)
+
+type VendorDetail struct {
+	Id       int    `json:"id"`
+	ParentId int    `json:"parent_id"`
+	Vendor   string `json:"vendor"`
+	Brand    string `json:"brand"`
+	Model    string `json:"model"`
+}

+ 22 - 0
app/device/service/utilService.go

@@ -0,0 +1,22 @@
+package service
+
+import (
+	"iot_manager_service/app/device/dao"
+)
+
+var UtilService = new(utilService)
+
+type utilService struct{}
+
+func (s *utilService) Get(modeType, deviceType int) (*dao.DeviceVendor, error) {
+	// 创建查询实例
+	device := &dao.DeviceVendor{
+		VendorType: modeType,
+		DeviceType: deviceType,
+	}
+	err := device.GetByType()
+	if err != nil {
+		return nil, err
+	}
+	return device, nil
+}

+ 3 - 0
router/router.go

@@ -24,6 +24,9 @@ func InitRouter(engine *gin.Engine) {
 	// 设备管理
 	device := engine.Group("/api/longchi/device/")
 
+	//设备模型
+	device.GET("vender/getModelList", controller.Util.GetModelList)
+
 	//桥梁
 	bridge := device.Group("bridge")
 	{