模型库
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

template_super_implement.tpl 254 B

pirms 4 nedēļām
1234567891011121314
  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. }