Merge branch 'feature-4210/BIS_UHSTAT2_Erweiterungen'

This commit is contained in:
Andreas Österreicher
2019-10-15 13:56:38 +02:00
10 changed files with 1681 additions and 474 deletions
@@ -0,0 +1,15 @@
<?php
class Bisiozweck_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisio_zweck';
$this->pk = array('bisio_id', 'zweck_code');
$this->hasSequence = false;
}
}