1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 01:04:13 +00:00
Beego/model.go

37 lines
420 B
Go
Raw Normal View History

2012-12-17 14:15:21 +00:00
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() {
}