From 2e0130a6dc1d6616bd62a7b5d96e7eb26189a31e Mon Sep 17 00:00:00 2001 From: yangsh Date: Mon, 12 Jan 2026 16:07:07 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=EC=9E=90=EB=8F=99?= =?UTF-8?q?=EA=B2=80=EC=A6=9D=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Config/Routes.php | 12 ++++ app/Controllers/V2/M711.php | 18 ++++++ app/Models/v2/M711Model.php | 9 +++ app/Views/pages/v2/m711/lists.php | 96 +++++++++++++++++++++++++++++++ 4 files changed, 135 insertions(+) create mode 100644 app/Controllers/V2/M711.php create mode 100644 app/Models/v2/M711Model.php create mode 100644 app/Views/pages/v2/m711/lists.php diff --git a/app/Config/Routes.php b/app/Config/Routes.php index c8e9b19..c313f7e 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -236,6 +236,18 @@ $routes->group('', ['namespace' => 'App\Controllers\V2'], static function ($rout }); + /** + * 모바일 자동검증 + */ + $routes->group('m711', static function ($routes) { + $routes->get('m711a/lists', 'M711::lists'); + + /** + * 모바일 자동검증 - API + */ + $routes->get('m711a/getResultList', 'M711::getResultList'); + + }); }); diff --git a/app/Controllers/V2/M711.php b/app/Controllers/V2/M711.php new file mode 100644 index 0000000..b67d0c2 --- /dev/null +++ b/app/Controllers/V2/M711.php @@ -0,0 +1,18 @@ +data); + } +} \ No newline at end of file diff --git a/app/Models/v2/M711Model.php b/app/Models/v2/M711Model.php new file mode 100644 index 0000000..ba60776 --- /dev/null +++ b/app/Models/v2/M711Model.php @@ -0,0 +1,9 @@ +extend('layouts/main') ?> + +section('content') ?> + + +

모바일 자동검증

+ +
+
+
+
+
+ +
+ + +
+ + +
+ +
+ +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + +
매물번호매물종류거래종류등록시간노출일시주소상세주소매체사중개업소명매물검증방식코드자동검증통과여부
+
+ +
+
+
+ + +endSection() ?> \ No newline at end of file -- 2.49.1