basic model and factory for lohnguide

This commit is contained in:
Werner Masik
2026-03-03 11:50:45 +01:00
parent f4ae8dd8e1
commit e054f1222b
3 changed files with 160 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
class VertragsbestandteilLohnguide_model extends DB_Model
{
public function __construct()
{
parent::__construct();
$this->dbTable = 'hr.tbl_vertragsbestandteil_lohnguide';
$this->pk = 'vertragsbestandteil_id';
}
}