fix: some api bug

This commit is contained in:
wwweww
2026-03-31 22:12:06 +08:00
parent c5ff4f0216
commit e7970ac25f
219 changed files with 16195 additions and 2126 deletions
@@ -3,6 +3,8 @@
package userverifications
import (
"time"
"entgo.io/ent/dialect/sql"
)
@@ -60,8 +62,10 @@ func ValidColumn(column string) bool {
var (
// DefaultStatus holds the default value on creation for the "status" field.
DefaultStatus string
// DefaultRejectReason holds the default value on creation for the "reject_reason" field.
DefaultRejectReason string
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
DefaultCreatedAt func() time.Time
// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
DefaultUpdatedAt func() time.Time
)
// OrderOption defines the ordering options for the UserVerifications queries.