Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetAuditPlanReportSQLs ¶
@Summary 获取指定审核计划的SQL审核详情 @Description get audit plan report SQLs @Id getAuditPlanReportSQLsV2 @Tags audit_plan @Security ApiKeyAuth @Param audit_plan_name path string true "audit plan name" @Param audit_plan_report_id path string true "audit plan report id" @Param page_index query uint32 false "page index" @Param page_size query uint32 false "size of per page" @Success 200 {object} v2.GetAuditPlanReportSQLsResV2 @router /v2/audit_plans/{audit_plan_name}/report/{audit_plan_report_id}/ [get]
func GetAuditPlanSQLs ¶
@Summary 获取指定审核计划的SQLs信息(不包括审核结果) @Description get audit plan SQLs @Id getAuditPlanSQLsV2 @Tags audit_plan @Security ApiKeyAuth @Param audit_plan_name path string true "audit plan name" @Param page_index query uint32 false "page index" @Param page_size query uint32 false "size of per page" @Success 200 {object} v2.GetAuditPlanSQLsResV2 @router /v2/audit_plans/{audit_plan_name}/sqls [get]
Types ¶
type AuditPlanReportSQLResV2 ¶
type AuditPlanSQLHeadV2 ¶
type AuditPlanSQLResV2 ¶
type AuditPlanSQLResV2 struct {
Head []AuditPlanSQLHeadV2 `json:"head"`
Rows []map[string]string `json:"rows"`
}
type GetAuditPlanReportSQLsResV2 ¶
type GetAuditPlanReportSQLsResV2 struct {
controller.BaseRes
Data []AuditPlanReportSQLResV2 `json:"data"`
TotalNums uint64 `json:"total_nums"`
}
type GetAuditPlanSQLsReqV2 ¶
type GetAuditPlanSQLsResV2 ¶
type GetAuditPlanSQLsResV2 struct {
controller.BaseRes
Data AuditPlanSQLResV2 `json:"data"`
TotalNums uint64 `json:"total_nums"`
}