You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
690 B
46 lines
690 B
package show |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/admin/main/feed/conf" |
|
"go-common/library/database/orm" |
|
|
|
"github.com/jinzhu/gorm" |
|
) |
|
|
|
// Dao struct user of color egg Dao. |
|
type Dao struct { |
|
// db |
|
DB *gorm.DB |
|
} |
|
|
|
// New create a instance of color egg Dao and return. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
// db |
|
DB: orm.NewMySQL(c.ORM), |
|
} |
|
d.initORM() |
|
return |
|
} |
|
|
|
func (d *Dao) initORM() { |
|
d.DB.LogMode(true) |
|
} |
|
|
|
// Ping check connection of db , mc. |
|
func (d *Dao) Ping(c context.Context) (err error) { |
|
if d.DB != nil { |
|
err = d.DB.DB().PingContext(c) |
|
return |
|
} |
|
return |
|
} |
|
|
|
// Close close connection of db , mc. |
|
func (d *Dao) Close() { |
|
if d.DB != nil { |
|
d.DB.Close() |
|
} |
|
}
|
|
|