[feat] 重命名 ConditionTokenValue => TokenValue

This commit is contained in:
2024-05-09 10:44:33 +08:00
parent a871ccfa75
commit f79e122b40
3 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ type EngineCase[T any] struct {
cb func(data T, g req.GlobalParams) error
}
func (this EngineCase[T]) ToSql(param condition.ConditionTokenValue) db.Expression {
func (this EngineCase[T]) ToSql(param condition.TokenValue) db.Expression {
if this.predicate == nil || this.predicate.IsEmpty() {
return db.Raw("NULL")
}