// // db_model.go // Copyright (C) 2023 tiglog // // Distributed under terms of the MIT license. // package sqldb // TODO 暂时不好实现,以后再说 type Model struct { db *Engine } func NewModel() *Model { return &Model{ db: Db, } }