|
@@ -2,39 +2,40 @@ package dao
|
|
|
|
|
|
import (
|
|
|
"gorm.io/gorm"
|
|
|
+ "iot_manager_service/util/common"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
|
//LampPole 灯杆设备
|
|
|
type LampPole struct {
|
|
|
- ID int `gorm:"primary_key" json:"id"` //编号
|
|
|
- PoleName string `gorm:"type:varchar(64)" json:"poleName"` //灯杆名称
|
|
|
- PoleSN string `gorm:"type:varchar(60)" json:"poleSn"` //灯杆唯一识别码
|
|
|
- PoleSize float32 `gorm:"type:double(3,1)" json:"poleSize"` //灯杆规格
|
|
|
- GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组
|
|
|
- GatewayId string `gorm:"type:varchar(32)" json:"gatewayId"` //所属网关id
|
|
|
- BoxId int `gorm:"type:int" json:"boxId"` //所属配电箱
|
|
|
- CoordType int `gorm:"type:int;default 1" json:"coordType"` //经纬度类型0=百度,1=高德,2=腾讯,3=GPS
|
|
|
- ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
|
|
|
- CityName string `gorm:"type:varchar(60)" json:"cityName"` //城市
|
|
|
- DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区域
|
|
|
- InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
|
|
|
- PoleLng float64 `gorm:"type:double(17,14)" json:"poleLng"` //经度
|
|
|
- PoleLat float64 `gorm:"type:double(17,14)" json:"poleLat"` //纬度
|
|
|
- RealLng float64 `gorm:"type:double(17,14)" json:"realLng"` //真实经度
|
|
|
- RealLat float64 `gorm:"type:double(17,14)" json:"realLat"` //真实纬度
|
|
|
- IsCross int `gorm:"type:int" json:"isCross"` //是否为路口-0-是1-不是
|
|
|
- InstallTime time.Time `gorm:"type:date" json:"installTime"` //安装时间
|
|
|
- LampPolePhoto string `gorm:"type:varchar(255)" json:"lampPolePhoto"` //灯杆照片
|
|
|
- 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"` //标签,(备用,逗号区分)
|
|
|
- BridgeId int `gorm:"type:int" json:"bridgeId"` //桥梁ID
|
|
|
+ ID int `gorm:"primary_key" json:"id"` //编号
|
|
|
+ PoleName string `gorm:"type:varchar(64)" json:"poleName"` //灯杆名称
|
|
|
+ PoleSN string `gorm:"type:varchar(60)" json:"poleSn"` //灯杆唯一识别码
|
|
|
+ PoleSize float32 `gorm:"type:double(3,1)" json:"poleSize"` //灯杆规格
|
|
|
+ GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组
|
|
|
+ GatewayId string `gorm:"type:varchar(32)" json:"gatewayId"` //所属网关id
|
|
|
+ BoxId int `gorm:"type:int" json:"boxId"` //所属配电箱
|
|
|
+ CoordType int `gorm:"type:int;default 1" json:"coordType"` //经纬度类型0=百度,1=高德,2=腾讯,3=GPS
|
|
|
+ ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
|
|
|
+ CityName string `gorm:"type:varchar(60)" json:"cityName"` //城市
|
|
|
+ DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区域
|
|
|
+ InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
|
|
|
+ PoleLng float64 `gorm:"type:double(17,14)" json:"poleLng"` //经度
|
|
|
+ PoleLat float64 `gorm:"type:double(17,14)" json:"poleLat"` //纬度
|
|
|
+ RealLng float64 `gorm:"type:double(17,14)" json:"realLng"` //真实经度
|
|
|
+ RealLat float64 `gorm:"type:double(17,14)" json:"realLat"` //真实纬度
|
|
|
+ IsCross int `gorm:"type:int" json:"isCross"` //是否为路口-0-是1-不是
|
|
|
+ InstallTime common.Time `gorm:"type:date" json:"installTime"` //安装时间
|
|
|
+ LampPolePhoto string `gorm:"type:varchar(255)" json:"lampPolePhoto"` //灯杆照片
|
|
|
+ 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"` //标签,(备用,逗号区分)
|
|
|
+ BridgeId int `gorm:"type:int" json:"bridgeId"` //桥梁ID
|
|
|
}
|
|
|
|
|
|
func (LampPole) TableName() string {
|
|
@@ -111,10 +112,18 @@ func (c LampPole) Count() int64 {
|
|
|
return count
|
|
|
}
|
|
|
|
|
|
-//得到关联灯杆数 2022-12-08 dsx
|
|
|
+// GetSwitchBoxCount 得到 配电箱 关联灯杆数 2022-12-08 dsx
|
|
|
func (c LampPole) GetSwitchBoxCount() (int64, error) {
|
|
|
var count int64
|
|
|
err := Db.Debug().Model(&c).Where("(box_id = ?) and is_deleted = 0",
|
|
|
c.BoxId).Count(&count).Error
|
|
|
return count, err
|
|
|
}
|
|
|
+
|
|
|
+// GetGroupIdCount 得到 灯杆分组 关联灯杆数 2022-12-09 dsx
|
|
|
+func (c LampPole) GetGroupIdCount() (int, error) {
|
|
|
+ var count int64
|
|
|
+ err := Db.Debug().Model(&c).Where("(group_id = ?) and is_deleted = 0",
|
|
|
+ c.GroupId).Count(&count).Error
|
|
|
+ return int(count), err
|
|
|
+}
|