등기부등본 목록 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-07 14:34:04 +09:00
parent 81a9697352
commit 761607beae
8 changed files with 1753 additions and 8 deletions

View File

@@ -130,6 +130,22 @@ $routes->group('', ['namespace' => 'App\Controllers\V2'], static function ($rout
$routes->post('m704a/getNextFaxImgs', 'M704::getNextFaxImgs'); // 다음매물확인
});
/**
* 등기부등본확인매물현황
*/
$routes->group('m705', static function ($routes) {
$routes->get('m705a/lists', 'M705::lists');
$routes->get('m705a/detail/(:num)', 'M705::detail/$1');
/**
* 등기부등본확인매물현황 - API
*/
$routes->get('m705a/getResultList', 'M705::getResultList');
$routes->get('m705a/excel', 'M705::excel');
});
});