1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 10:24:14 +00:00

delete model move to orm

This commit is contained in:
astaxie 2013-08-06 16:40:23 +08:00
parent e47a147c3b
commit 2fa534ff26

View File

@ -1,36 +0,0 @@
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() {
}