gin-base/database/gdb_dao_interface.go

8 lines
86 B
Go

package database
type IDao interface {
DB() DB
TableName() string
Columns() any
}