1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 20:23:26 +00:00
Beego/model.go
2012-12-17 22:15:21 +08:00

37 lines
420 B
Go

package beego
type BeeModel struct {
driver string
}
func (this *BeeModel) Insert() {
}
func (this *BeeModel) MultipleInsert() {
}
func (this *BeeModel) Update() {
}
func (this *BeeModel) Query() {
}
//Deletes from table with clauses where and using.
func (this *BeeModel) Delete() {
}
//Start a transaction
func (this *BeeModel) Transaction() {
}
//commit transaction
func (this *BeeModel) Commit() {
}