[Developer] #618 add structured data browser

This commit is contained in:
devmrko
2026-07-07 13:14:46 +09:00
parent 8e1e521a70
commit 6b60757721
10 changed files with 374 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.cloudhandson.vpdbackoffice.domain.structured;
import java.util.List;
import java.util.Map;
public record StructuredDataPreview(
StructuredDataTable table,
List<String> columns,
List<Map<String, Object>> rows,
int rowLimit
) {
}