feat: 添加分词工具支持并更新字段命名

This commit is contained in:
2026-04-08 14:21:12 +08:00
parent 7acee87023
commit 5022e9115d
5 changed files with 132 additions and 1 deletions

View File

@@ -414,6 +414,7 @@ var (
type Gfdb interface {
Exec(ctx context.Context, sql string, args ...any) (sql.Result, error)
GetAll(ctx context.Context, sql string, args ...any) (gdb.Result, error)
Model(ctx context.Context, tableNameOrStruct ...any) *model
Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) error
}