Merge branch 'feature/v2-renewal' of http://39.117.244.52:3000/kjs/ERP-node into feature/v2-unified-renewal

This commit is contained in:
kjs
2026-01-05 18:23:14 +09:00
10 changed files with 2012 additions and 158 deletions

View File

@@ -29,6 +29,8 @@ import {
// 화면 레이아웃 요약
getScreenLayoutSummary,
getMultipleScreenLayoutSummary,
// 화면 서브 테이블 관계
getScreenSubTables,
} from "../controllers/screenGroupController";
const router = Router();
@@ -82,6 +84,11 @@ router.delete("/table-relations/:id", deleteTableRelation);
router.get("/layout-summary/:screenId", getScreenLayoutSummary);
router.post("/layout-summary/batch", getMultipleScreenLayoutSummary);
// ============================================================
// 화면 서브 테이블 관계 (조인/참조 테이블)
// ============================================================
router.post("/sub-tables/batch", getScreenSubTables);
export default router;