update doc

This commit is contained in:
白茶清欢 2024-09-03 12:02:13 +08:00
parent b89b9b6958
commit 9de616194b

View File

@ -70,7 +70,22 @@ func (e *execute) Run(ctx context.Context, inputParam *define.Api2SqlParam) (any
}
}
// List 列表
// List 方法用于从数据库中查询数据列表。
//
// 参数:
// - ctx: 上下文对象,用于传递请求的上下文信息。
// - inputParam: 查询参数,包含 SQL 语句、列列表等信息。
//
// 返回值:
// - any: 查询结果,返回一个结构体切片,其中包含查询到的数据。
// - error: 错误信息,如果查询过程中发生错误,将返回相应的错误对象。
//
// 使用示例:
// result, err := e.List(ctx, inputParam)
// if err!= nil {
// // 处理错误
// }
// // 处理查询结果
//
// Author : go_developer@163.com<白茶清欢>
//