Jelajahi Sumber

灯杆相关接口

terry 2 tahun lalu
induk
melakukan
60fbe8c582

+ 28 - 3
app/controller/lampPoleController.go

@@ -2,6 +2,11 @@ package controller
 
 import (
 	"github.com/gin-gonic/gin"
+	"iot_manager_service/app/model"
+	"iot_manager_service/app/service"
+	"iot_manager_service/app/utils"
+	"net/http"
+	"strconv"
 )
 
 // 灯杆基本信息管理对象
@@ -10,15 +15,35 @@ var LampPole = new(lampPoleCtl)
 type lampPoleCtl struct{}
 
 func (c *lampPoleCtl) Detail(ctx *gin.Context) {
+	id, e := strconv.Atoi(ctx.Query("id"))
+	if e != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(e.Error(), nil))
+		return
+	}
+
+	device, err := service.LampPoleService.Get(id)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
 }
 
-func (c *lampPoleCtl) List(ctx *gin.Context) {
+func (c *lampPoleCtl) CreateOrUpdate(ctx *gin.Context) {
+	var req *model.ReqLampPoleSubmit
+	if err := ctx.ShouldBindJSON(&req); err != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
+		return
+	}
+	err := service.LampPoleService.CreateOrUpdate(req)
+	ctx.JSON(http.StatusOK, err)
+
 }
 
-func (c *lampPoleCtl) GetRelevanceDetail(ctx *gin.Context) {
+func (c *lampPoleCtl) List(ctx *gin.Context) {
 }
 
-func (c *lampPoleCtl) CreateOrUpdate(ctx *gin.Context) {
+func (c *lampPoleCtl) GetRelevanceDetail(ctx *gin.Context) {
 }
 
 func (c *lampPoleCtl) Remove(ctx *gin.Context) {

+ 1 - 1
app/dao/common.go

@@ -27,6 +27,6 @@ func InitDB() {
 		GDb.DB().SetMaxOpenConns(32)
 		GDb.DB().SetMaxIdleConns(5)
 		GDb.LogMode(false)
-		GDb.AutoMigrate(&CameraDevice{}, &LampPoleGroup{})
+		GDb.AutoMigrate(&CameraDevice{}, &LampPoleGroup{}, &LampPole{})
 	}
 }

+ 1 - 2
app/dao/lampPoleGroupDao.go

@@ -67,8 +67,7 @@ func (c *LampPoleGroup) GetDevice() error {
 
 func (c LampPoleGroup) GetDevices(offset, limit int) ([]LampPoleGroup, error) {
 	var devices []LampPoleGroup
-	err := GDb.Model(&c).Where(" pole_group_name like ? ", "%"+c.PoleGroupName+"%").Offset(offset).Limit(limit).Scan(
-		&devices).Error
+	err := GDb.Model(&c).Where(" pole_group_name like ? ", "%"+c.PoleGroupName+"%").Offset(offset).Limit(limit).Find(&devices).Error
 	return devices, err
 }
 

+ 0 - 10
app/model/lampPoleGroup.go

@@ -33,12 +33,6 @@ type switchBox struct {
 type infoBoard struct {
 }
 
-type ReqLampPoleGroupList struct {
-	PoleGroupName string `json:"poleGroupName"` //分组名
-	Current       int    `json:"current"`       //当前分页
-	Size          int    `json:"size"`          //每页数量
-}
-
 type RspLampPoleGroupList struct {
 	Records []ReqLampPoleGroupSubmit `json:"records"` //记录列表
 	Current int                      `json:"current"` //当前分页
@@ -46,10 +40,6 @@ type RspLampPoleGroupList struct {
 	Total   int                      `json:"total"`   //总数
 }
 
-type ReqLampPoleGroupDetail struct {
-	ID int `json:"id"` //分组编码
-}
-
 type ReqLampPoleGroupRemove struct {
 	IDs int `json:"ids"` //分组编码
 }