added tables and model for issue Fehlerkonfiguration

This commit is contained in:
KarpAlex
2023-05-11 18:54:35 +02:00
parent 96172c67fd
commit fd7c193894
3 changed files with 123 additions and 0 deletions
@@ -0,0 +1,24 @@
<?php
class Fehlerkonfiguration_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_fehler_konfiguration';
$this->pk = array('konfigurationstyp_kurzbz', 'fehlercode');
}
/**
*
* @param
* @return object success or error
*/
public function getKonfiguration()
{
}
}