common.go 808 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package dao
  2. import (
  3. "fmt"
  4. "github.com/jinzhu/gorm"
  5. "iot_manager_service/app/system/dao"
  6. )
  7. var Db *gorm.DB
  8. func InitDB(db *gorm.DB) {
  9. Db = db
  10. err := Db.AutoMigrate(
  11. &dao.User{},
  12. &dao.Dict{},
  13. &LampPoleGroup{},
  14. &LampPole{},
  15. &Gateway{},
  16. &GatewayRelation{},
  17. &Transformer{},
  18. &LightControl{},
  19. &Garbage{},
  20. &GarbageWayGroup{},
  21. &OnDemandGroup{},
  22. &OnDemandSensor{},
  23. &Zigbee{},
  24. &CameraDevice{},
  25. &InfoBoard{},
  26. &Alarm{},
  27. &CaptureUnit{},
  28. &CheckPoint{},
  29. &AlarmTerminal{},
  30. &Bridge{},
  31. &BridgeSensor{},
  32. &IpBroadcast{},
  33. &ManholeCover{},
  34. &OptoSensor{},
  35. &SwitchBox{},
  36. &IntelligentLight{},
  37. &TimeCondition{},
  38. &LightStrategy{},
  39. &LightCondition{},
  40. &DeviceVendor{},
  41. &OperationHis{},
  42. ).Error
  43. if err != nil {
  44. panic(fmt.Sprintf("AutoMigrate err : %v", err))
  45. }
  46. }