1 Star 0 Fork 0

徐大周的春天/gorose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
orm_api.go 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
fizzday 提交于 2020-01-03 03:11 . union update
package gorose
// OrmApi ...
type OrmApi struct {
table string
fields []string
where [][]interface{}
order string
limit int
offset int
join [][]interface{}
distinct bool
//union string
group string
having string
data interface{}
force bool
extraCols []string
// 悲观锁
pessimisticLock string
}
// GetTable ...
func (o *Orm) GetTable() string {
return o.table
}
// GetFields ...
func (o *Orm) GetFields() []string {
return o.fields
}
// SetWhere ...
func (o *Orm) SetWhere(arg [][]interface{}) {
o.where = arg
}
// GetWhere ...
func (o *Orm) GetWhere() [][]interface{} {
return o.where
}
// GetOrder ...
func (o *Orm) GetOrder() string {
return o.order
}
// GetLimit ...
func (o *Orm) GetLimit() int {
return o.limit
}
// GetOffset ...
func (o *Orm) GetOffset() int {
return o.offset
}
// GetJoin ...
func (o *Orm) GetJoin() [][]interface{} {
return o.join
}
// GetDistinct ...
func (o *Orm) GetDistinct() bool {
return o.distinct
}
// GetGroup ...
func (o *Orm) GetGroup() string {
return o.group
}
// GetHaving ...
func (o *Orm) GetHaving() string {
return o.having
}
// GetData ...
func (o *Orm) GetData() interface{} {
return o.data
}
// GetForce ...
func (o *Orm) GetForce() bool {
return o.force
}
// GetExtraCols ...
func (o *Orm) GetExtraCols() []string {
return o.extraCols
}
// GetPessimisticLock ...
func (o *Orm) GetPessimisticLock() string {
return o.pessimisticLock
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xu_dazhous_spring/gorose.git
git@gitee.com:xu_dazhous_spring/gorose.git
xu_dazhous_spring
gorose
gorose
master

搜索帮助