This commit is contained in:
Paminger
2016-05-01 23:34:49 +02:00
parent 8cb8782586
commit b52ffa8974
8 changed files with 816 additions and 7 deletions
@@ -0,0 +1,16 @@
<?php
class Organisationseinheit_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable='public.tbl_organisationseinheit';
$this->pk='oe_kurzbz';
}
}