Files
FHC-Core/application/models/education/Legesamtnote_model.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

15 lines
241 B
PHP
Executable File

<?php
class Legesamtnote_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'campus.tbl_legesamtnote';
$this->pk = array('lehreinheit_id', 'student_uid');
}
}