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