delete model move to orm
Showing
1 changed file
with
0 additions
and
36 deletions
model.go
deleted
100644 → 0
| 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 | } |
-
Please register or sign in to post a comment