Files
2024-01-03 09:50:06 +01:00

14 lines
232 B
PHP

<?php
class Notizdokument_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_notiz_dokument';
$this->pk= array('notiz_id' , 'dms_id');
}
}