일반매물현황 목록 페이지 추가

This commit is contained in:
yangsh
2025-12-30 16:02:51 +09:00
parent d6c10995b2
commit 003c1b4b8f
9 changed files with 1611 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Controllers\Common;
use App\Controllers\BaseController;
use App\Models\common\CommonModel;
class Common extends BaseController
{
private $model;
public function __construct()
{
$this->model = new CommonModel();
}
public function getVrfcCode()
{
$type = $this->request->getGet("type");
$type = "VRFC_TYPE_SUB_" . $type;
$data = $this->model->getVrfcCode($type);
return $this->response->setJSON($data);
}
}