12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package dao
- import (
- "fmt"
- "gorm.io/gorm"
- )
- var Db *gorm.DB
- func InitDB(db *gorm.DB) {
- Db = db
- err := Db.AutoMigrate(
- &LampPoleGroup{},
- &LampPole{},
- &Gateway{},
- &GatewayRelation{},
- &Transformer{},
- &LightControl{},
- &Garbage{},
- &GarbageWayGroup{},
- &OnDemandGroup{},
- &OnDemandSensor{},
- &Zigbee{},
- &CameraDevice{},
- &InfoBoard{},
- &Alarm{},
- &CaptureUnit{},
- &CheckPoint{},
- &AlarmTerminal{},
- &Bridge{},
- &BridgeSensor{},
- &IpBroadcast{},
- &ManholeCover{},
- &OptoSensor{},
- &SwitchBox{},
- &IntelligentLight{},
- &TimeCondition{},
- &LightStrategy{},
- &LightCondition{},
- &DeviceVendor{},
- &TenantCode{},
- )
- if err != nil {
- panic(fmt.Sprintf("AutoMigrate err : %v", err))
- }
- }
|