优化对传入where的处理

This commit is contained in:
白茶清欢 2022-07-18 19:41:04 +08:00
parent 0bda3657c6
commit 77df474a4f

View File

@ -106,7 +106,7 @@ func (b *BaseDao) setTxCondition(tx *gorm.DB, table string, optionFuncList ...Se
}
// 设置where条件
if nil != o.Where {
if nil != o.Where && len(o.Where) > 0 {
tx.Where(o.Where)
}