mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
14 lines
209 B
PHP
14 lines
209 B
PHP
<?php
|
|
|
|
class RtPerson_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = "public.tbl_rt_person";
|
|
$this->pk = "rt_person_id";
|
|
}
|
|
} |