模型库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
254 B

  1. package implement
  2. import (
  3. "code.fnuoos.com/zhimeng/model.git/src/super/dao"
  4. "xorm.io/xorm"
  5. )
  6. func NewDemoImplementDb(engine *xorm.Engine) dao.DemoImplementDao {
  7. return &DemoImplementDb{Db: engine}
  8. }
  9. type DemoImplementDb struct {
  10. Db *xorm.Engine
  11. }