瀏覽代碼

信息屏接口

hxz 2 年之前
父節點
當前提交
6c1bd5f8f9
共有 5 個文件被更改,包括 265 次插入0 次删除
  1. 63 0
      app/controller/infoBoardController.go
  2. 1 0
      app/dao/common.go
  3. 97 0
      app/dao/infoBoardDao.go
  4. 15 0
      app/model/infoBoard.go
  5. 89 0
      app/service/infoBoardService.go

+ 63 - 0
app/controller/infoBoardController.go

@@ -2,6 +2,13 @@ package controller
 
 import (
 	"github.com/gin-gonic/gin"
+	"iot_manager_service/app/dao"
+	"iot_manager_service/app/model"
+	"iot_manager_service/app/service"
+	"iot_manager_service/app/utils"
+	"math"
+	"net/http"
+	"strconv"
 )
 
 // 信息屏基本信息管理对象
@@ -10,15 +17,71 @@ var InfoBoard = new(infoBoardCtl)
 type infoBoardCtl struct{}
 
 func (c *infoBoardCtl) 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.InfoBoardService.Get(id)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
 }
 
 func (c *infoBoardCtl) 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.InfoBoardService.List(searchValue, current, size)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	pages := math.Ceil(float64(len(devices)) / float64(size))
+	rsp := model.RsqInfoBoardList{
+		Current: current,
+		Size:    size,
+		Total:   len(devices),
+		Pages:   int(pages),
+	}
+	for _, device := range devices {
+
+		rsp.Records = append(rsp.Records, device)
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, rsp))
 }
 
 func (c *infoBoardCtl) CreateOrUpdate(ctx *gin.Context) {
+	var req dao.InfoBoard
+	if err := ctx.ShouldBindJSON(&req); err != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
+		return
+	}
+	err := service.InfoBoardService.CreateOrUpdate(req)
+	ctx.JSON(http.StatusOK, err)
 }
 
 func (c *infoBoardCtl) Remove(ctx *gin.Context) {
+	var req *model.ReqInfoBoardRemove
+	if err := ctx.ShouldBindJSON(&req); err != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
+		return
+	}
+	err := service.InfoBoardService.Remove(req.IDs)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
 }
 
 func (c *infoBoardCtl) ImportExcel(ctx *gin.Context) {

+ 1 - 0
app/dao/common.go

@@ -34,6 +34,7 @@ func InitDB() {
 			&OnDemandSensor{},
 			&Zigbee{},
 			&CameraDevice{},
+			&InfoBoard{},
 		).Error
 		if err != nil {
 			panic(fmt.Sprintf("AutoMigrate err : %v", err))

+ 97 - 0
app/dao/infoBoardDao.go

@@ -0,0 +1,97 @@
+package dao
+
+import (
+	"github.com/jinzhu/gorm"
+	"time"
+)
+
+//InfoBoard信息基本屏
+type InfoBoard struct {
+	ID               int       `gorm:"primary_key" json:"id"`                            //编号
+	InfoName         string    `gorm:"type:varchar(60)" json:"infoName"`                 //名称
+	SN               string    `gorm:"type:varchar(60)" json:"sn"`                       //设备序列号
+	LampPoleId       int       `gorm:"type:int" json:"LampPoleId"`                       //所属灯杆id
+	LampPoleName     string    `gorm:"type: varchar(64)" json:"lampPoleName"`            //灯杆名称
+	LampPoleSN       string    `gorm:"type: varchar(64)" json:"lampPoleSN"`              //灯杆编码
+	LampPoleLocation string    `gorm:"type:varchar(255)" json:"lampPoleLocation"`        //灯杆安装位置
+	PoleLng          float64   `gorm:"type:double(17, 14) " json:"poleLng"`              //经度
+	PoleLat          float64   `gorm:"type:double(17, 14)  " json:"poleLat"`             //纬度
+	GatewayId        string    `gorm:"type:varchar(32)" json:"gatewayId"`                //所属网关id
+	GroupId          int       `gorm:"type:int" json:"groupId"`                          //所属灯杆分组
+	Resolution       int       `gorm:"type:int" json:"resolution"`                       //分辨率
+	BrandID          int       `gorm:"type:int" json:"brandID"`                          //设备名称
+	ModelID          int       `gorm:"type:int" json:"modelID"`                          //设备型号
+	InfoSize         int       `gorm:"type:int" json:"infoSize"`                         //信息屏尺寸
+	RatedPower       float32   `gorm:"type:float(8, 2); default 0.00" json:"ratedPower"` //额定功率(LED灯)
+	IPAddress        string    `gorm:"type:varchar(64)" json:"ipAddress"`                //IP地址
+	BootStartTime    string    `gorm:"type:time" json:"bootStartTime"`                   //开机开始时间
+	BootEndTime      string    `gorm:"type:time" json:"bootEndTime"`                     //开机结束时间
+	NeverCloseDown   int       `gorm:"type:int" json:"neverCloseDown"`                   //永不关机:1-选择,2-取消
+	InstallTime      time.Time `gorm:"type:date" json:"installTime"`                     //安装时间
+	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;default 0" json:"isDeleted"`              //是否删除 0=未删除,1=删除
+	Tag              string    `gorm:"type:varchar(255)" json:"tag"`                     //标签,保留字段(逗号区分)
+	ExteriorUid      int       `gorm:"type:bigint" json:"exteriorUid"`                   //外设ID
+	IsEnable         int       `gorm:"type: int; default 2 " json:"isEnable"`            //启用禁用:1启用,2禁用
+}
+
+func (InfoBoard) TableName() string {
+	return "t_dev_info_board"
+}
+
+func (c InfoBoard) Delete() error {
+	return GDb.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
+		"update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
+}
+
+func (c InfoBoard) IsExistedBySN() bool {
+	var count = 0
+	_ = GDb.Model(&c).Where("  sn = ? and is_deleted = ?",
+		c.SN, c.IsDeleted).Count(&count).Error
+	return count > 0
+}
+
+func (c InfoBoard) IsExistedByNameAndCode() bool {
+	var devices []InfoBoard
+	err := GDb.Model(&c).Where(" sn = ? and is_deleted = ?",
+		c.SN, c.IsDeleted).Find(&devices).Error
+	//如果查询不到,返回相应的错误
+	if gorm.IsRecordNotFoundError(err) {
+		return false
+	}
+	for _, d := range devices {
+		if d.ID != c.ID {
+			return true
+		}
+	}
+	return false
+}
+
+func (c *InfoBoard) Create() error {
+	return GDb.Model(&c).Save(&c).Error
+}
+
+func (c *InfoBoard) Update() error {
+	return GDb.Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
+}
+
+func (c *InfoBoard) GetDevice() error {
+	err := GDb.Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
+	return err
+}
+
+func (c InfoBoard) GetDevices(offset, limit int) ([]InfoBoard, error) {
+	var devices []InfoBoard
+	err := GDb.Model(&c).Where(" info_name like ? ", "%"+c.InfoName+"%").Offset(offset).Limit(limit).Find(&devices).Error
+	return devices, err
+}
+
+func (c InfoBoard) GetAllDevices() ([]*InfoBoard, error) {
+	var devices []*InfoBoard
+	err := GDb.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
+	return devices, err
+}

+ 15 - 0
app/model/infoBoard.go

@@ -0,0 +1,15 @@
+package model
+
+import "iot_manager_service/app/dao"
+
+type RsqInfoBoardList struct {
+	Records []dao.InfoBoard `json:"records"` //记录列表
+	Current int             `json:"current"` //当前分页
+	Size    int             `json:"size"`    //每页数量
+	Pages   int             `json:"pages"`   //总页数
+	Total   int             `json:"total"`   //总数
+}
+
+type ReqInfoBoardRemove struct {
+	IDs int `json:"ids"` //分组编码
+}

+ 89 - 0
app/service/infoBoardService.go

@@ -0,0 +1,89 @@
+package service
+
+import (
+	"fmt"
+	"iot_manager_service/app/dao"
+	"iot_manager_service/app/utils"
+	"time"
+)
+
+var InfoBoardService = new(infoBoardService)
+
+type infoBoardService struct{}
+
+func (s *infoBoardService) Get(id int) (*dao.InfoBoard, *utils.Errors) {
+	// 创建查询实例
+	device := &dao.InfoBoard{
+		ID: id,
+	}
+	err := device.GetDevice()
+	if err != nil {
+		return nil, utils.FailResponse(err.Error(), nil)
+	}
+	return device, nil
+
+}
+
+func (s *infoBoardService) CreateOrUpdate(req dao.InfoBoard) *utils.Errors {
+	// 创建查询实例
+	device := req
+	if req.ID == 0 {
+		device.CreateTime = time.Now()
+		device.CreateUser = "TODO" // todo: 使用登录态
+		if device.IsExistedBySN() {
+			fmt.Printf("Create GetDeviceID err \n")
+			return utils.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
+		}
+		if err := device.Create(); err != nil {
+			fmt.Printf("Create err = %s \n", err.Error())
+			return utils.FailResponse(err.Error(), nil)
+		}
+		return utils.SuccessResponse(utils.Succeeded, nil)
+	}
+	device.UpdateUser = "TODO" // todo: 使用登录态
+	device.UpdateTime = time.Now()
+	if device.IsExistedByNameAndCode() {
+		return utils.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
+	}
+
+	if err := device.Update(); err != nil {
+		fmt.Printf("Update err = %s \n", err.Error())
+		return utils.FailResponse(err.Error(), nil)
+	}
+
+	//todo operation record
+	return utils.SuccessResponse(utils.Succeeded, nil)
+}
+func (s *infoBoardService) List(searchValue string, current, size int) ([]dao.InfoBoard, *utils.Errors) {
+	device := dao.InfoBoard{}
+	if searchValue != "" {
+		device.SN = searchValue
+		device.InfoName = searchValue
+	}
+
+	offset := (current - 1) * size
+	limit := size
+	devices, err := device.GetDevices(offset, limit)
+	if err != nil {
+		return nil, utils.FailResponse(err.Error(), nil)
+	}
+	return devices, nil
+}
+func (s *infoBoardService) Remove(id int) *utils.Errors {
+	// 创建查询实例
+	device := &dao.InfoBoard{
+		ID:         id,
+		IsDeleted:  1,
+		UpdateUser: "TODO", // todo 使用登录态
+		UpdateTime: time.Now(),
+	}
+	//todo
+	// service.transformerService.CountRelation()
+
+	//todo operation record
+	err := device.Delete()
+	if err != nil {
+		return utils.FailResponse(err.Error(), nil)
+	}
+	return nil
+}