added codex/Gsprogramm_model

This commit is contained in:
KarpAlex
2022-07-12 19:41:08 +02:00
parent 013def84e3
commit f72c165fe6
@@ -0,0 +1,15 @@
<?php
class Gsprogramm_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_gsprogramm';
$this->pk = 'gsprogramm_id';
}
}