- editieren von stammdaten im infocentertool

This commit is contained in:
ma0048
2022-10-18 11:00:57 +02:00
parent 6a2f570ffa
commit 0bd7d6f7c6
5 changed files with 271 additions and 21 deletions
@@ -0,0 +1,14 @@
<?php
class Geschlecht_model extends DB_Model
{
/**
*
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_geschlecht';
$this->pk = 'geschlecht';
}
}