mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 21:59:27 +00:00
89849d30fb
- added getByDate, generateMatrikelnummer methods
16 lines
291 B
PHP
16 lines
291 B
PHP
<?php
|
|
class Studentlehrverband_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_studentlehrverband';
|
|
$this->pk = array('studiensemester_kurzbz', 'student_uid');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|