12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package dao
- import (
- "github.com/jinzhu/gorm"
- "time"
- )
- type Zigbee struct {
- ID int `gorm:"primary_key" json:"id"`
- Name string `gorm:"type:varchar(64)" json:"name"`
- SN string `gorm:"type:varchar(60)" json:"sn"`
- GroupId int `gorm:"type:int" json:"groupId"`
- LampPoleId int `gorm:"type:int" json:"lampPoleId"`
- 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"`
- BrandID int `gorm:"type:int" json:"brandId"`
- ModelID int `gorm:"type:int" json:"modelId"`
- GatewayId int `gorm:"type:int" json:"gatewayId"`
- GatewayName string `gorm:"type:varchar(64)" json:"gatewayName"`
- GatewaySN string `gorm:"type:varchar(60)" json:"gatewaySn"`
- ChanelNum int `gorm:"type:int" json:"channelNum"`
- NetworkNum int `gorm:"type:int" json:"networkNum"`
- InstallTime *time.Time `gorm:"type:date" json:"installTime"`
- TenantId int `gorm:"type:int" 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"`
- Status int `gorm:"type:int" json:"status"`
- Tag string `gorm:"type:varchar(255)" json:"tag"`
- IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"`
- }
- func (Zigbee) TableName() string {
- return "device_zigbee"
- }
- func (c Zigbee) 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 Zigbee) IsExistedBySN() bool {
- var count = 0
- _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
- c.SN, c.IsDeleted).Count(&count).Error
- return count > 0
- }
- func (c Zigbee) IsExistedByNameAndCode() bool {
- var devices []Zigbee
- err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
- c.SN, c.IsDeleted).Find(&devices).Error
-
- if gorm.IsRecordNotFoundError(err) {
- return false
- }
- for _, d := range devices {
- if d.ID != c.ID {
- return true
- }
- }
- return false
- }
- func (c *Zigbee) Create() error {
- return Db.Debug().Model(&c).Save(&c).Error
- }
- func (c *Zigbee) Update() error {
- return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
- }
- func (c *Zigbee) GetDevice() error {
- err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
- return err
- }
- func (c Zigbee) GetDevices(offset, limit int) ([]Zigbee, error) {
- var devices []Zigbee
- err := Db.Debug().Model(&c).Where(" name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
- return devices, err
- }
- func (c Zigbee) GetAllDevices() ([]*Zigbee, error) {
- var devices []*Zigbee
- err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
- return devices, err
- }
|