123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- "iot_manager_service/app/device/dao"
- "iot_manager_service/app/device/model"
- "iot_manager_service/app/device/service"
- "iot_manager_service/app/middleware"
- "iot_manager_service/util"
- "math"
- "net/http"
- "strconv"
- )
- // OnDemandSensor 灯随车走传感器管理对象
- var OnDemandSensor = new(onDemandSensorCtl)
- type onDemandSensorCtl struct{}
- func (c *onDemandSensorCtl) Detail(ctx *gin.Context) {
- id, e := strconv.Atoi(ctx.Query("id"))
- if e != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(e.Error(), nil))
- return
- }
- device, err := service.OnDemandSensorService.Get(id)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device))
- }
- func (c *onDemandSensorCtl) List(ctx *gin.Context) {
- searchValue := ctx.Query("searchValue")
- current, _ := strconv.Atoi(ctx.Query("current"))
- size, _ := strconv.Atoi(ctx.Query("size"))
- if current == 0 {
- current = 1
- }
- if size <= 0 || size > 100 {
- size = 10
- }
- devices, err := service.OnDemandSensorService.List(searchValue, current, size)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- pages := math.Ceil(float64(len(devices)) / float64(size))
- rsp := model.RsqOnDemandSensorList{
- Current: current,
- Size: size,
- Total: len(devices),
- Pages: int(pages),
- }
- for _, device := range devices {
- rsp.Records = append(rsp.Records, device)
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
- }
- func (c *onDemandSensorCtl) CreateOrUpdate(ctx *gin.Context) {
- value, _ := ctx.Get(middleware.Authorization)
- claims := value.(*middleware.Claims)
- var req dao.OnDemandSensor
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.OnDemandSensorService.CreateOrUpdate(claims.UserId, claims.TenantId, req)
- ctx.JSON(http.StatusOK, err)
- }
- func (c *onDemandSensorCtl) Remove(ctx *gin.Context) {
- value, _ := ctx.Get(middleware.Authorization)
- claims := value.(*middleware.Claims)
- var req *model.ReqOnDemandSensorRemove
- if err := ctx.ShouldBindJSON(&req); err != nil {
- ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
- return
- }
- err := service.OnDemandSensorService.Remove(claims.UserId, req.IDs)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, nil))
- }
- func (c *onDemandSensorCtl) ImportExcel(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) ExportExcel(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) ExportTemplate(ctx *gin.Context) {
- }
- func (c *onDemandSensorCtl) Enable(ctx *gin.Context) {
- }
|