mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
24 lines
580 B
Go
24 lines
580 B
Go
package api
|
|
|
|
import (
|
|
"mayfly-go/internal/devops/application"
|
|
"mayfly-go/internal/devops/domain/entity"
|
|
"mayfly-go/pkg/ctx"
|
|
"mayfly-go/pkg/ginx"
|
|
)
|
|
|
|
type DbSqlExec struct {
|
|
DbSqlExecApp application.DbSqlExec
|
|
}
|
|
|
|
func (d *DbSqlExec) DbSqlExecs(rc *ctx.ReqCtx) {
|
|
g := rc.GinCtx
|
|
m := &entity.DbSqlExec{DbId: uint64(ginx.QueryInt(g, "dbId", 0)),
|
|
Db: g.Query("db"),
|
|
Table: g.Query("table"),
|
|
Type: int8(ginx.QueryInt(g, "type", 0)),
|
|
}
|
|
m.CreatorId = rc.LoginAccount.Id
|
|
rc.ResData = d.DbSqlExecApp.GetPageList(m, ginx.GetPageParam(rc.GinCtx), new([]entity.DbSqlExec))
|
|
}
|