mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
31 lines
723 B
Go
31 lines
723 B
Go
package api
|
|
|
|
import (
|
|
"mayfly-go/internal/db/application"
|
|
"mayfly-go/internal/db/domain/entity"
|
|
"mayfly-go/pkg/biz"
|
|
"mayfly-go/pkg/req"
|
|
"mayfly-go/pkg/utils/collx"
|
|
|
|
"github.com/may-fly/cast"
|
|
|
|
"strings"
|
|
)
|
|
|
|
type DbSqlExec struct {
|
|
DbSqlExecApp application.DbSqlExec `inject:""`
|
|
}
|
|
|
|
func (d *DbSqlExec) DbSqlExecs(rc *req.Ctx) {
|
|
queryCond, page := req.BindQueryAndPage(rc, new(entity.DbSqlExecQuery))
|
|
|
|
if statusStr := rc.Query("status"); statusStr != "" {
|
|
queryCond.Status = collx.ArrayMap[string, int8](strings.Split(statusStr, ","), func(val string) int8 {
|
|
return cast.ToInt8(val)
|
|
})
|
|
}
|
|
res, err := d.DbSqlExecApp.GetPageList(queryCond, page, new([]entity.DbSqlExec))
|
|
biz.ErrIsNil(err)
|
|
rc.ResData = res
|
|
}
|