123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package dao
- import (
- "gorm.io/gorm"
- "iot_manager_service/util/common"
- "time"
- )
- type IpBroadcast struct {
- ID int `gorm:"primary_key" json:"id"`
- CastName string `gorm:"type:varchar(64)" json:"castName"`
- CastSn string `gorm:"type:varchar(60)" json:"castSn"`
- LampPoleId int `gorm:"type:int" json:"lampPoleId"`
- LampPoleSn string `gorm:"type:varchar(64)" json:"lampPoleSn"`
- GroupId int `gorm:"type:int" json:"groupId"`
- GatewayId int `gorm:"type:int" json:"gatewayId"`
- GatewaySn string `gorm:"type:varchar(64)" json:"gatewaySn"`
- 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"`
- IPAddress string `gorm:"type:varchar(50)" json:"ipAddress"`
- ServiceIpAddress string `gorm:"type:varchar(50)" json:"serviceIpAddress"`
- ServerPort int `gorm:"type:int" json:"serverPort"`
- SoundVolume int `gorm:"type:int" json:"soundVolume"`
- InstallTime common.Time `gorm:"type:date" json:"installTime"`
- TenantId string `gorm:"type:varchar(12)" json:"tenantId"`
- CreateTime time.Time `gorm:"type:datetime" json:"createTime"`
- CreateUser int64 `gorm:"type:bigint" json:"createUser"`
- UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"`
- UpdateUser int64 `gorm:"type:bigint" json:"updateUser"`
- IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"`
- }
- func (IpBroadcast) TableName() string {
- return "device_ip_broadcast"
- }
- func (c IpBroadcast) Delete() error {
- return Db.Debug().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 IpBroadcast) IsExistedBySN() bool {
- var count int64
- _ = Db.Debug().Model(&c).Where(" cast_sn = ? and is_deleted = ?",
- c.CastSn, c.IsDeleted).Count(&count).Error
- return count > 0
- }
- func (c IpBroadcast) IsExistedByNameAndCode() bool {
- var devices []IpBroadcast
- err := Db.Debug().Model(&c).Where(" cast_sn = ? and is_deleted = ?",
- c.CastSn, c.IsDeleted).Find(&devices).Error
-
- if gorm.ErrRecordNotFound == err {
- return false
- }
- for _, d := range devices {
- if d.ID != c.ID {
- return true
- }
- }
- return false
- }
- func (c *IpBroadcast) Create() error {
- return Db.Debug().Model(&c).Save(&c).Error
- }
- func (c *IpBroadcast) Update() error {
- return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
- }
- func (c *IpBroadcast) GetDevice() error {
- err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
- return err
- }
- func (c IpBroadcast) GetDevices(offset, limit int) ([]IpBroadcast, int64, error) {
- var devices []IpBroadcast
- var count int64
- db := Db.Debug().Model(&c).Where("is_deleted = 0 and cast_name like ? ", "%"+c.CastName+"%")
- db.Count(&count)
- err := db.Offset(offset).Limit(limit).Find(&devices).Error
- return devices, count, err
- }
- func (c IpBroadcast) GetAllDevices() ([]IpBroadcast, error) {
- var devices []IpBroadcast
- err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
- c.IsDeleted).Scan(&devices).Error
- return devices, err
- }
- func (c IpBroadcast) GetDevicesByGateway() []IpBroadcast {
- var devices []IpBroadcast
- Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
- c.GatewayId).Find(&devices)
- return devices
- }
- func (c IpBroadcast) GetDevicesByLampPole() []IpBroadcast {
- var devices []IpBroadcast
- Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
- c.LampPoleId).Find(&devices)
- return devices
- }
- func (c IpBroadcast) GetAll() []IpBroadcast {
- var devices []IpBroadcast
- Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
- c.IsDeleted).Scan(&devices)
- return devices
- }
- func (c IpBroadcast) GetByIds(ids string) []IpBroadcast {
- var devices []IpBroadcast
- Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ?", c.TenantId,
- c.IsDeleted).Where("id in (" + ids + ")").Scan(&devices)
- return devices
- }
|