common.go 567 B

1234567891011121314151617181920212223242526
  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. {&BusinessTactics{}, "业务策略"},
  15. }
  16. for _, val := range models {
  17. //fmt.Println(val.Model)
  18. err := Db.Set("gorm:table_options", "comment '"+val.Comment+"'").AutoMigrate(val.Model)
  19. if err != nil {
  20. panic(fmt.Sprintf("AutoMigrate err : %v", err))
  21. }
  22. }
  23. }