Files
jongryangje/app/Models/LocalGovernmentModel.php
taekyoungc 4e557d4be1 Initial project import for team collaboration.
Exclude local docs, MCP, and secrets via gitignore.

Made-with: Cursor
2026-03-25 12:05:33 +09:00

24 lines
449 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class LocalGovernmentModel extends Model
{
protected $table = 'local_government';
protected $primaryKey = 'lg_idx';
protected $returnType = 'object';
protected $useTimestamps = false;
protected $allowedFields = [
'lg_name',
'lg_code',
'lg_sido',
'lg_gugun',
'lg_addr',
'lg_state',
'lg_regdate',
];
}