mirror of
https://github.com/astaxie/beego.git
synced 2025-07-22 00:15:30 +00:00
delete model move to orm
This commit is contained in:
36
model.go
36
model.go
@@ -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() {
|
|
||||||
|
|
||||||
}
|
|
Reference in New Issue
Block a user