Add two more APIs
This commit is contained in:
parent
7f73480a35
commit
b4031e004a
8
orm.go
8
orm.go
@ -61,6 +61,14 @@ func (s *Orm) Delete(value interface{}) *Orm {
|
|||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Orm) Update(column string, value string) *Orm {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Orm) Updates(values map[string]string) *Orm {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Orm) Exec(sql string) *Orm {
|
func (s *Orm) Exec(sql string) *Orm {
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user