added model for adressentyp

This commit is contained in:
Werner Masik
2022-08-16 13:10:20 +02:00
parent 5ea46ece47
commit a3c9d75617
@@ -0,0 +1,14 @@
<?php
class Adressentyp_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_adressentyp';
$this->pk = 'adressentyp_kurzbz';
}
}