Files
FHC-Core/application/models/accounting/Buchung_model.php
T
2024-10-17 15:34:00 +02:00

15 lines
203 B
PHP

<?php
class Buchung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'wawi.tbl_buchung';
$this->pk = 'buchung_id';
}
}