Explorar el Código

变压器-供电箱-智慧网关-灯杆分组-多功能杆 修复 增删改

sixian hace 2 años
padre
commit
9d3c8c2136
Se han modificado 2 ficheros con 64 adiciones y 62 borrados
  1. 31 30
      app/device/dao/infoBoardDao.go
  2. 33 32
      app/device/dao/lightControlDao.go

+ 31 - 30
app/device/dao/infoBoardDao.go

@@ -2,41 +2,42 @@ package dao
 
 import (
 	"gorm.io/gorm"
+	"iot_manager_service/util/common"
 	"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        int       `gorm:"type:int" 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         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=删除
-	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禁用
+	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        int         `gorm:"type:int" 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:varchar(64)" json:"bootStartTime"`            //开机开始时间
+	BootEndTime      string      `gorm:"type:varchar(64)" json:"bootEndTime"`              //开机结束时间
+	NeverCloseDown   int         `gorm:"type:int" json:"neverCloseDown"`                   //永不关机:1-选择,2-取消
+	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=删除
+	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 {

+ 33 - 32
app/device/dao/lightControlDao.go

@@ -2,43 +2,44 @@ package dao
 
 import (
 	"gorm.io/gorm"
+	"iot_manager_service/util/common"
 	"time"
 )
 
 //LightControl 灯控
 type LightControl struct {
-	ID               int       `gorm:"primary_key" json:"id"`                     //编号
-	Name             string    `gorm:"type:varchar(64)"  json:"name"`             //名称
-	Sn               string    `gorm:"type:varchar(60)" json:"sn"`                //设备序列号
-	ControlType      int       `gorm:"type:int" json:"controlType"`               //控制器类型 type:0=485灯控,1=NB-iot箱
-	GroupId          int       `gorm:"type:int" json:"groupId"`                   //所属灯杆分组
-	GatewayId        int       `gorm:"type:varchar(32)" json:"gatewayId"`         //所属网关id
-	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"`         //经度
-	RatedPower       float32   `gorm:"type:double(8,2)" json:"ratedPower"`        //额定功率(LED灯)
-	BrandId          int       `gorm:"type:int" json:"brandId"`                   //设备品牌
-	ModelId          int       `gorm:"type:int" json:"modelId"`                   //设备型号
-	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"`              //标签,(备用,逗号区分)
-	ControlNo        string    `gorm:"type:varchar(10)" json:"controlNo"`         //编号
-	ChannelNum       int       `gorm:"type:int" json:"channelNum"`                //通道号
-	NetworkNum       int       `gorm:"type:int" json:"networkNum"`                //网络号
-	ZigbeeId         int       `gorm:"type:int" json:"zigbeeId"`                  //zigbeeID
-	ZigbeeName       string    `gorm:"type:varchar(10)" json:"zigbeeName"`        //zigbee名称
-	ZigbeeSn         string    `gorm:"type:varchar(10)" json:"zigbeeSn"`          //zigbee编码
-	IsEnable         int       `gorm:"type:int;default 2" json:"isEnable"`        //启用禁用:1启用2禁用
-	IsOnDemand       int       `gorm:"type:int; default 0" json:"isOnDemand"`     //灯控类型:0-普通灯控,1-灯随车走灯控
+	ID               int         `gorm:"primary_key" json:"id"`                     //编号
+	Name             string      `gorm:"type:varchar(64)"  json:"name"`             //名称
+	Sn               string      `gorm:"type:varchar(60)" json:"sn"`                //设备序列号
+	ControlType      int         `gorm:"type:int" json:"controlType"`               //控制器类型 type:0=485灯控,1=NB-iot箱
+	GroupId          int         `gorm:"type:int" json:"groupId"`                   //所属灯杆分组
+	GatewayId        int         `gorm:"type:varchar(32)" json:"gatewayId"`         //所属网关id
+	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"`         //经度
+	RatedPower       float32     `gorm:"type:double(8,2)" json:"ratedPower"`        //额定功率(LED灯)
+	BrandId          int         `gorm:"type:int" json:"brandId"`                   //设备品牌
+	ModelId          int         `gorm:"type:int" json:"modelId"`                   //设备型号
+	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"`              //标签,(备用,逗号区分)
+	ControlNo        string      `gorm:"type:varchar(10)" json:"controlNo"`         //编号
+	ChannelNum       int         `gorm:"type:int" json:"channelNum"`                //通道号
+	NetworkNum       int         `gorm:"type:int" json:"networkNum"`                //网络号
+	ZigbeeId         int         `gorm:"type:int" json:"zigbeeId"`                  //zigbeeID
+	ZigbeeName       string      `gorm:"type:varchar(10)" json:"zigbeeName"`        //zigbee名称
+	ZigbeeSn         string      `gorm:"type:varchar(10)" json:"zigbeeSn"`          //zigbee编码
+	IsEnable         int         `gorm:"type:int;default 2" json:"isEnable"`        //启用禁用:1启用2禁用
+	IsOnDemand       int         `gorm:"type:int; default 0" json:"isOnDemand"`     //灯控类型:0-普通灯控,1-灯随车走灯控
 }
 
 func (LightControl) TableName() string {