Added GUI for adding Bismeldestichtag

This commit is contained in:
KarpAlex
2023-06-10 21:40:28 +02:00
parent f95c5ec7cf
commit e6b47266b9
7 changed files with 309 additions and 27 deletions
@@ -0,0 +1,14 @@
<?php
class Bismeldestichtag_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bismeldestichtag';
$this->pk = 'meldestichtag_id';
}
}