- added codex/Bisiozweck_model.php

This commit is contained in:
alex
2019-09-26 16:17:35 +02:00
parent 6669014ac4
commit bdb0cb7772
@@ -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;
}
}