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

template_implement.tpl 263 B

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