[Developer] #424 show filters and ORDS handler details

Refs #424
This commit is contained in:
devmrko
2026-06-23 14:30:22 +09:00
parent 09e25a2349
commit ae3dd6667e
11 changed files with 197 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
package com.cloudhandson.vpdbackoffice.domain.ords;
public record OrdsHandlerView(
String schemaName,
String moduleName,
String basePath,
String template,
String method,
String sourceType,
String source,
String parameters,
String packageSource
) {
public String fullPath() {
return "/ords/" + schemaName + "/" + basePath + template;
}
}