智莺生活mysql模型库
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.

template_implement.tpl 263 B

1 month ago
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. }