mirror of
https://github.com/astaxie/beego.git
synced 2025-07-04 02:50:19 +00:00
simplify beego
This commit is contained in:
37
model.go
37
model.go
@ -1 +1,36 @@
|
||||
package beego
|
||||
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