Files
FHC-Core/application/models/person/Notizzuordnung_model.php
T
Paminger 6836c3608d Models
2016-05-04 07:05:23 +02:00

15 lines
226 B
PHP

<?php
class Notizzuordnung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_notizzuordnung';
$this->pk = 'notizzuordnung_id';
}
}