瀏覽代碼

垃圾桶道路分组的所有接口

hxz 2 年之前
父節點
當前提交
56cb6ee062

+ 0 - 25
app/controller/garbageWayController.go

@@ -1,25 +0,0 @@
-package controller
-
-import (
-	"github.com/gin-gonic/gin"
-)
-
-// 垃圾桶道路管理对象
-var GarbageWay = new(garbageWayCtl)
-
-type garbageWayCtl struct{}
-
-func (c *garbageWayCtl) Detail(ctx *gin.Context) {
-}
-
-func (c *garbageWayCtl) List(ctx *gin.Context) {
-}
-
-func (c *garbageWayCtl) CreateOrUpdate(ctx *gin.Context) {
-}
-
-func (c *garbageWayCtl) Remove(ctx *gin.Context) {
-}
-
-func (c *garbageWayCtl) GetList(ctx *gin.Context) {
-}

+ 94 - 0
app/controller/garbageWayGroupController.go

@@ -0,0 +1,94 @@
+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"
+)
+
+// 垃圾桶道路管理对象
+var GarbageWay = new(garbageWayCtl)
+
+type garbageWayCtl struct{}
+
+func (c *garbageWayCtl) 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.GarbageWayGroupService.Get(id)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, device))
+}
+
+func (c *garbageWayCtl) 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.GarbageWayGroupService.List(searchValue, current, size)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	pages := math.Ceil(float64(len(devices)) / float64(size))
+	rsp := model.RsqGarbageWayGroupList{
+		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 *garbageWayCtl) CreateOrUpdate(ctx *gin.Context) {
+	var req dao.GarbageWayGroup
+	if err := ctx.ShouldBindJSON(&req); err != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
+		return
+	}
+	err := service.GarbageWayGroupService.CreateOrUpdate(req)
+	ctx.JSON(http.StatusOK, err)
+}
+
+func (c *garbageWayCtl) Remove(ctx *gin.Context) {
+	var req *model.ReqGarbageWayGroupRemove
+	if err := ctx.ShouldBindJSON(&req); err != nil {
+		ctx.JSON(http.StatusOK, utils.ParamsInvalidResponse(err.Error(), nil))
+		return
+	}
+	err := service.GarbageWayGroupService.Remove(req.IDs)
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, nil))
+}
+
+func (c *garbageWayCtl) GetList(ctx *gin.Context) {
+	devices, err := service.GarbageWayGroupService.GetList()
+	if err != nil {
+		ctx.JSON(http.StatusOK, err)
+		return
+	}
+	ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, devices))
+}

+ 1 - 1
app/dao/common.go

@@ -22,7 +22,7 @@ func InitDB() {
 		GDb.DB().SetMaxIdleConns(5)
 		GDb.LogMode(false)
 		err = GDb.AutoMigrate(&LampPoleGroup{}, &LampPole{}, &Gateway{}, &GatewayRelation{},
-			&LightControl{}, Garbage{}).Error
+			&LightControl{}, &Garbage{}, &GarbageWayGroup{}).Error
 		if err != nil {
 			panic(fmt.Sprintf("AutoMigrate err : %v", err))
 		}

+ 1 - 1
app/dao/garbageDao.go

@@ -5,7 +5,7 @@ import (
 	"time"
 )
 
-// GarbageWay 垃圾桶道路分组管理
+// Garbage 垃圾桶道路分组管理
 type Garbage struct {
 	ID              int       `gorm:"primary_key" json:"id"`                    //编号
 	DeviceName      string    `gorm:"type:varchar(64)" json:"deviceName"`       //垃圾桶名称

+ 76 - 0
app/dao/garbageWayGroupDao.go

@@ -0,0 +1,76 @@
+package dao
+
+import (
+	"github.com/jinzhu/gorm"
+	"time"
+)
+
+// GarbageWayGroup 垃圾桶道路分组管理
+type GarbageWayGroup struct {
+	ID         int       `gorm:"primary_key" json:"id"`               //编号
+	GroupName  string    `gorm:"type:varchar(64)" json:"groupName"`   //分组名称
+	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=删除
+	Remark     string    `gorm:"type:varchar(255)" json:"remark"`     //备注
+}
+
+func (GarbageWayGroup) TableName() string {
+	return "t_dev_garbage_way_group"
+}
+
+func (c GarbageWayGroup) 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 GarbageWayGroup) IsExistedByName() bool {
+	var count = 0
+	_ = GDb.Model(&c).Where("  group_name = ? and is_deleted = ?",
+		c.GroupName, c.IsDeleted).Count(&count).Error
+	return count > 0
+}
+
+func (c GarbageWayGroup) IsExistedByNameAndCode() bool {
+	var devices []Garbage
+	err := GDb.Model(&c).Where(" group_name = ? and is_deleted = ?",
+		c.GroupName, 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 *GarbageWayGroup) Create() error {
+	return GDb.Model(&c).Save(&c).Error
+}
+
+func (c *GarbageWayGroup) Update() error {
+	return GDb.Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
+}
+
+func (c *GarbageWayGroup) GetDevice() error {
+	err := GDb.Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
+	return err
+}
+
+func (c GarbageWayGroup) GetDevices(offset, limit int) ([]GarbageWayGroup, error) {
+	var devices []GarbageWayGroup
+	err := GDb.Model(&c).Where(" group_name like ? ", "%"+c.GroupName+"%").Offset(offset).Limit(limit).Find(&devices).Error
+	return devices, err
+}
+
+func (c GarbageWayGroup) GetAllDevices() ([]*GarbageWayGroup, error) {
+	var devices []*GarbageWayGroup
+	err := GDb.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
+	return devices, err
+}

+ 15 - 0
app/model/garbageWayGroup.go

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

+ 103 - 0
app/service/garbageWayGroupService.go

@@ -0,0 +1,103 @@
+package service
+
+import (
+	"fmt"
+	"iot_manager_service/app/dao"
+	"iot_manager_service/app/utils"
+	"time"
+)
+
+var GarbageWayGroupService = new(garbageWayGroupService)
+
+type garbageWayGroupService struct{}
+
+func (s *garbageWayGroupService) Get(id int) (*dao.GarbageWayGroup, *utils.Errors) {
+	// 创建查询实例
+	device := &dao.GarbageWayGroup{
+		ID: id,
+	}
+	err := device.GetDevice()
+	if err != nil {
+		return nil, utils.FailResponse(err.Error(), nil)
+	}
+	return device, nil
+
+}
+
+func (s *garbageWayGroupService) CreateOrUpdate(req dao.GarbageWayGroup) *utils.Errors {
+	// 创建查询实例
+	device := req
+	if req.ID == 0 {
+		device.CreateTime = time.Now()
+		device.CreateUser = "TODO" // todo: 使用登录态
+		if device.IsExistedByName() {
+			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 *garbageWayGroupService) List(searchValue string, current, size int) ([]dao.GarbageWayGroup, *utils.Errors) {
+	device := dao.GarbageWayGroup{}
+	//if searchValue != "" {
+	//	device.TransSN = searchValue
+	//	device.TransName = 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 *garbageWayGroupService) Remove(id int) *utils.Errors {
+	// 创建查询实例
+	device := &dao.GarbageWayGroup{
+		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
+}
+
+func (s *garbageWayGroupService) GetList() ([]*dao.GarbageWayGroup, *utils.Errors) {
+	// todo use redis cache
+	device := &dao.GarbageWayGroup{
+		TenantId:  "000000", // todo 使用登录态
+		IsDeleted: 0,
+	}
+	devices, err := device.GetAllDevices()
+	if err != nil {
+		return nil, utils.FailResponse(err.Error(), nil)
+	}
+
+	return devices, nil
+}