common.go 527 B

12345678910111213141516171819202122232425
  1. package dao
  2. import (
  3. "fmt"
  4. "gorm.io/gorm"
  5. "iot_manager_service/util/common"
  6. )
  7. var Db *gorm.DB
  8. func InitDB(db *gorm.DB) {
  9. Db = db
  10. models := []common.TableModelAuto{
  11. {&NoticeSet{}, "告警通知设置"},
  12. {&NoticeRecord{}, "告警通知记录"},
  13. {&PlatformAlarm{}, "平台所有告警"},
  14. }
  15. for _, val := range models {
  16. //fmt.Println(val.Model)
  17. err := Db.Set("gorm:table_options", "comment '"+val.Comment+"'").AutoMigrate(val.Model)
  18. if err != nil {
  19. panic(fmt.Sprintf("AutoMigrate err : %v", err))
  20. }
  21. }
  22. }