Forráskód Böngészése

摄像机 环境伟感器 后端修复

sixian 2 éve
szülő
commit
fcd7a2d1aa
4 módosított fájl, 55 hozzáadás és 55 törlés
  1. 29 28
      app/device/dao/cameraDao.go
  2. 25 24
      app/device/dao/optoSensoDao.go
  3. 1 1
      app/device/model/camera.go
  4. 0 2
      go.mod

+ 29 - 28
app/device/dao/cameraDao.go

@@ -1,39 +1,40 @@
 package dao
 
 import (
+	"iot_manager_service/util/common"
 	"time"
 )
 
 //CameraDevice 网关下挂载的设备, 摄像头
 type CameraDevice struct {
-	ID               int       `gorm:"primary_key" json:"id"`                          //编号
-	DeviceName       string    `gorm:"type:varchar(64)" json:"deviceName"`             //设备名称
-	DeviceSN         string    `gorm:"type:varchar(64)" json:"deviceSn"`               //设备序列号
-	CameraType       int       `gorm:"type:int" json:"cameraType"`                     //摄像机类型 0=枪机,1=球机
-	GatewayId        int       `gorm:"type:int" json:"gatewayId"`                      //所属网关
-	LampPoleId       int       `gorm:"type:int" json:"lampPoleId"`                     //归属灯杆 灯杆ID
-	LampPoleName     string    `gorm:"type:varchar(64)" json:"lampPoleName"`           //灯杆名称
-	LampPoleSn       string    `gorm:"type:varchar(64)" json:"lampPoleSn"`             //灯杆sn
-	LampPoleLocation string    `gorm:"type:varchar(255)" json:"lampPoleLocation"`      //灯杆安装位置
-	LampLat          float64   `gorm:"type:double(17,14)" json:"lampLat"`              //经度
-	LampLng          float64   `gorm:"type:double(17,14)" json:"lampLng"`              //纬度
-	GroupId          int       `gorm:"type:int" json:"groupId"`                        //灯杆分组ID
-	BrandId          int       `gorm:"type:int" json:"brandId"`                        //设备品牌
-	ModelId          int       `gorm:"type:int" json:"modelId"`                        //设备型号
-	RatedPower       float32   `gorm:"type:float(8,2);default 0.00" json:"ratedPower"` //功率
-	MonitorAddress   string    `gorm:"type:varchar(255)" json:"monitorAddress"`        //监控地址 ip:端口
-	IPAddress        string    `gorm:"type:varchar(40)" json:"ipAddress"`              //IP地址
-	InstallTime      time.Time `gorm:"type:date" json:"installTime"`                   //安装时间
-	TenantId         int       `gorm:"type:int" json:"tenantId"`                       //租户ID
-	CreateTime       time.Time `gorm:"type:datetime" json:"createTime"`                //新增时间
-	CreateUser       int64     `gorm:"type:bigint" json:"createUser"`                  //新增记录操作用户ID
-	UpdateTime       time.Time `gorm:"type:datetime" json:"updateTime"`                //修改时间
-	UpdateUser       int64     `gorm:"type:bigint" json:"updateUser"`                  //修改用户
-	IsDeleted        int       `gorm:"type:int;default 0" json:"isDeleted"`            //是否删除 0=未删除,1=删除
-	Status           int       `gorm:"type:int" json:"status"`                         //状态 0=正常,1=异常
-	Tag              string    `gorm:"type:varchar(255)" json:"tag"`                   //标签,(备用,逗号区分)
-	IsEnable         int       `gorm:"type:int;default 2" json:"isEnable"`             //启用禁用:1启用,2禁用
-	StreamId         string    `gorm:"type:varchar(100)" json:"stream_id"`             //流id
+	ID               int         `gorm:"primary_key" json:"id"`                          //编号
+	DeviceName       string      `gorm:"type:varchar(64)" json:"deviceName"`             //设备名称
+	DeviceSN         string      `gorm:"type:varchar(64)" json:"deviceSn"`               //设备序列号
+	CameraType       int         `gorm:"type:int" json:"cameraType"`                     //摄像机类型 0=枪机,1=球机
+	GatewayId        int         `gorm:"type:int" json:"gatewayId"`                      //所属网关
+	LampPoleId       int         `gorm:"type:int" json:"lampPoleId"`                     //归属灯杆 灯杆ID
+	LampPoleName     string      `gorm:"type:varchar(64)" json:"lampPoleName"`           //灯杆名称
+	LampPoleSn       string      `gorm:"type:varchar(64)" json:"lampPoleSn"`             //灯杆sn
+	LampPoleLocation string      `gorm:"type:varchar(255)" json:"lampPoleLocation"`      //灯杆安装位置
+	LampLat          float64     `gorm:"type:double(17,14)" json:"lampLat"`              //经度
+	LampLng          float64     `gorm:"type:double(17,14)" json:"lampLng"`              //纬度
+	GroupId          int         `gorm:"type:int" json:"groupId"`                        //灯杆分组ID
+	BrandId          int         `gorm:"type:int" json:"brandId"`                        //设备品牌
+	ModelId          int         `gorm:"type:int" json:"modelId"`                        //设备型号
+	RatedPower       float32     `gorm:"type:float(8,2);default 0.00" json:"ratedPower"` //功率
+	MonitorAddress   string      `gorm:"type:varchar(255)" json:"monitorAddress"`        //监控地址 ip:端口
+	IPAddress        string      `gorm:"type:varchar(40)" json:"ipAddress"`              //IP地址
+	InstallTime      common.Time `gorm:"type:date" json:"installTime"`                   //安装时间
+	TenantId         int         `gorm:"type:int" json:"tenantId"`                       //租户ID
+	CreateTime       time.Time   `gorm:"type:datetime" json:"createTime"`                //新增时间
+	CreateUser       int64       `gorm:"type:bigint" json:"createUser"`                  //新增记录操作用户ID
+	UpdateTime       time.Time   `gorm:"type:datetime" json:"updateTime"`                //修改时间
+	UpdateUser       int64       `gorm:"type:bigint" json:"updateUser"`                  //修改用户
+	IsDeleted        int         `gorm:"type:int;default 0" json:"isDeleted"`            //是否删除 0=未删除,1=删除
+	Status           int         `gorm:"type:int" json:"status"`                         //状态 0=正常,1=异常
+	Tag              string      `gorm:"type:varchar(255)" json:"tag"`                   //标签,(备用,逗号区分)
+	IsEnable         int         `gorm:"type:int;default 2" json:"isEnable"`             //启用禁用:1启用,2禁用
+	StreamId         string      `gorm:"type:varchar(100)" json:"stream_id"`             //流id
 }
 
 func (CameraDevice) TableName() string {

+ 25 - 24
app/device/dao/optoSensoDao.go

@@ -2,34 +2,35 @@ package dao
 
 import (
 	"gorm.io/gorm"
+	"iot_manager_service/util/common"
 	"time"
 )
 
 //OptoSensor 集控器
 type OptoSensor struct {
-	ID               int        `gorm:"primary_key" json:"id"`                     //编号
-	Name             string     `gorm:"type:varchar(64)" json:"name"`              //名称
-	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"` //灯杆安装位置
-	LampLng          float64    `gorm:"type:double(17, 14) " json:"poleLng"`       //经度
-	LampLat          float64    `gorm:"type:double(17, 14)  " json:"poleLat"`      //纬度
-	BrandId          int        `gorm:"type:int" json:"brandId"`                   //设备名称
-	ModelId          int        `gorm:"type:int" json:"modelId"`                   //设备型号
-	GatewayId        int        `gorm:"type:int" json:"gatewayId"`                 //所属网关id
-	InstallTime      *time.Time `gorm:"type:date" json:"installTime"`              //安装时间
-	IPAddress        string     `gorm:"type:varchar(64)" json:"ipAddress"`         //IP地址-备用
-	IsDefault        int        `gorm:"type:int;default 0" json:"isDefault"`       //是否设为首页默认展示 0=不展示,1=设置展示
-	TenantId         int        `gorm:"type:int" json:"tenantId"`                  //租户ID
-	CreateTime       time.Time  `gorm:"type:datetime" json:"createTime"`           //新增时间
-	CreateUser       int64      `gorm:"type:bigint" json:"createUser"`             //新增记录操作用户ID
-	UpdateTime       time.Time  `gorm:"type:datetime" json:"updateTime"`           //修改时间
-	UpdateUser       int64      `gorm:"type:bigint" json:"updateUser"`             //修改用户
-	IsDeleted        int        `gorm:"type:int;default 0" json:"isDeleted"`       //是否删除 0=未删除,1=删除
-	Status           int        `gorm:"type:int" json:"status"`                    //状态 0=正常,1=异常
-	Tag              string     `gorm:"type:varchar(255)" json:"tag"`              //标签,保留字段(逗号区分)
+	ID               int         `gorm:"primary_key" json:"id"`                     //编号
+	Name             string      `gorm:"type:varchar(64)" json:"name"`              //名称
+	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"` //灯杆安装位置
+	LampLng          float64     `gorm:"type:double(17, 14) " json:"poleLng"`       //经度
+	LampLat          float64     `gorm:"type:double(17, 14)  " json:"poleLat"`      //纬度
+	BrandId          int         `gorm:"type:int" json:"brandId"`                   //设备名称
+	ModelId          int         `gorm:"type:int" json:"modelId"`                   //设备型号
+	GatewayId        int         `gorm:"type:int" json:"gatewayId"`                 //所属网关id
+	InstallTime      common.Time `gorm:"type:date" json:"installTime"`              //安装时间
+	IPAddress        string      `gorm:"type:varchar(64)" json:"ipAddress"`         //IP地址-备用
+	IsDefault        int         `gorm:"type:int;default 0" json:"isDefault"`       //是否设为首页默认展示 0=不展示,1=设置展示
+	TenantId         int         `gorm:"type:int" json:"tenantId"`                  //租户ID
+	CreateTime       time.Time   `gorm:"type:datetime" json:"createTime"`           //新增时间
+	CreateUser       int64       `gorm:"type:bigint" json:"createUser"`             //新增记录操作用户ID
+	UpdateTime       time.Time   `gorm:"type:datetime" json:"updateTime"`           //修改时间
+	UpdateUser       int64       `gorm:"type:bigint" json:"updateUser"`             //修改用户
+	IsDeleted        int         `gorm:"type:int;default 0" json:"isDeleted"`       //是否删除 0=未删除,1=删除
+	Status           int         `gorm:"type:int" json:"status"`                    //状态 0=正常,1=异常
+	Tag              string      `gorm:"type:varchar(255)" json:"tag"`              //标签,保留字段(逗号区分)
 }
 
 func (OptoSensor) TableName() string {
@@ -79,7 +80,7 @@ func (c *OptoSensor) GetDevice() error {
 
 func (c OptoSensor) GetDevices(offset, limit int) ([]OptoSensor, error) {
 	var devices []OptoSensor
-	err := Db.Debug().Model(&c).Where(" name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
+	err := Db.Debug().Model(&c).Where("is_deleted=0 and name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
 	return devices, err
 }
 

+ 1 - 1
app/device/model/camera.go

@@ -29,7 +29,7 @@ type RspCameraList struct {
 
 type ReqCameraRemove struct {
 	IDs  int    `json:"ids"`  //分组编码
-	SN   int    `json:"sn"`   //sn
+	SN   string `json:"sn"`   //sn
 	Name string `json:"name"` //名称
 }
 

+ 0 - 2
go.mod

@@ -16,9 +16,7 @@ require (
 	gopkg.in/yaml.v2 v2.4.0
 	gorm.io/driver/mysql v1.4.4
 	gorm.io/gorm v1.24.1
-)
 
-require (
 	github.com/dustin/go-humanize v1.0.0 // indirect
 	github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
 	github.com/fogleman/gg v1.3.0 // indirect