-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatement.go
49 lines (40 loc) · 943 Bytes
/
statement.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package session
// 条件组装 用户API层
type Statement struct {
clause *Clause
}
func NewStatement() *Statement {
return &Statement{
clause: newClause(),
}
}
// SetTableName 设置表名
func (s *Statement) SetTableName(tableName string) *Statement {
s.clause.tablename = tableName
return s
}
// 新增数据API
func (s *Statement) InsertStruct(vars interface{}) *Statement {
s.clause.insertStruct(vars)
return s
}
// 修改数据API
func (s *Statement) UpdateStruct(vars interface{}) *Statement {
s.clause.updateStruct(vars)
return s
}
// where条件
func (s *Statement) AndEqual(field string, value interface{}) *Statement {
s.clause.andEqual(field, value)
return s
}
// where条件
func (s *Statement) OrEqual(field string, value interface{}) *Statement {
s.clause.orEqual(field, value)
return s
}
// Select
func (s *Statement) Select(field ...string) *Statement {
s.clause.selectField(field...)
return s
}