2fa534ff by astaxie

delete model move to orm

1 parent e47a147c
Showing 1 changed file with 0 additions and 36 deletions
1 package beego
2
3 type BeeModel struct {
4 driver string
5 }
6
7 func (this *BeeModel) Insert() {
8
9 }
10
11 func (this *BeeModel) MultipleInsert() {
12
13 }
14
15 func (this *BeeModel) Update() {
16
17 }
18
19 func (this *BeeModel) Query() {
20
21 }
22
23 //Deletes from table with clauses where and using.
24 func (this *BeeModel) Delete() {
25
26 }
27
28 //Start a transaction
29 func (this *BeeModel) Transaction() {
30
31 }
32
33 //commit transaction
34 func (this *BeeModel) Commit() {
35
36 }
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!