등기부등본 목록 추가

Reviewed-on: http://192.168.10.243:3000/owrainfo/confirms/pulls/10
This commit was merged in pull request #10.
This commit is contained in:
2026-01-07 14:35:01 +09:00
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');
});
});