|
@@ -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) {
|