代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。