mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
16 lines
303 B
PHP
16 lines
303 B
PHP
<?php
|
|
class Bisioaufenthaltfoerderung_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'bis.tbl_bisio_aufenthaltfoerderung';
|
|
$this->pk = array('bisio_id', 'aufenthaltfoerderung_code');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|