101 lines
3.0 KiB
PHP
101 lines
3.0 KiB
PHP
<?php
|
|
namespace App\Model\Entity;
|
|
|
|
use Cake\ORM\Entity;
|
|
|
|
/**
|
|
* Office Entity
|
|
*
|
|
* @property int $id
|
|
* @property string $dst_name
|
|
* @property string $dst_schluessel
|
|
* @property string $dst_schulart
|
|
* @property string $dst_typ
|
|
* @property string $oe_typ
|
|
* @property string $dst_kurz
|
|
* @property string $dst_kurz_zusatz
|
|
* @property string $dst_briefkopf_1
|
|
* @property string $dst_briefkopf_2
|
|
* @property string $dst_briefkopf_3
|
|
* @property string $dst_briefkopf_4
|
|
* @property string $dst_kommentar
|
|
* @property string $dst_ist_ausgelagert
|
|
* @property string $dst_ist_mittelschule
|
|
* @property string $gkz_kennzahl
|
|
* @property string $lkz_kennzahl
|
|
* @property string $asd_plz_strasse
|
|
* @property string $adr_ort
|
|
* @property string $adr_strasse
|
|
* @property string $adr_hausnummer
|
|
* @property string $adr_ortsteil
|
|
* @property string $adr_plz_postfach
|
|
* @property string $adr_postfach_ort
|
|
* @property string $dst_ministerium_schluessel
|
|
* @property string $dst_mb_schluessel
|
|
* @property string $str_schluessel
|
|
* @property string $str_lan_bezeichnung
|
|
* @property string $str_art
|
|
* @property string $seminar
|
|
* @property string $sst_name_offiziell
|
|
* @property string $sts_datum_genehmigung
|
|
* @property string $sts_schluessel
|
|
* @property string $telefon
|
|
* @property string $fax
|
|
* @property string $email
|
|
* @property string $web
|
|
* @property string $bdg_schluessel
|
|
* @property string $bdg_status
|
|
* @property string $bdg_jg_von
|
|
* @property string $bdg_jg_bis
|
|
* @property string $bdg_bes_kreis
|
|
* @property string $fsprofil
|
|
* @property string $ffs_schluessel
|
|
* @property string $dst_vkz
|
|
* @property string $pu_schluessel
|
|
* @property string $dst_pu
|
|
* @property string $bv_schluessel
|
|
* @property string $dst_bv
|
|
* @property string $gt_betreuung
|
|
* @property string $so_zusatzangebot
|
|
* @property string $unterbringung
|
|
* @property string $sja_schluessel
|
|
* @property string $klassen_gesamt
|
|
* @property string $lehrer_gesamt
|
|
* @property string $lehrer_m
|
|
* @property string $lehrer_w
|
|
* @property string $lehrer_neben
|
|
* @property string $abgaenger
|
|
* @property string $schueler_gesamt
|
|
* @property string $schueler_m
|
|
* @property string $schuler_w
|
|
* @property string $schueller_kolleg
|
|
* @property string $schueler_bvj
|
|
* @property string $schueler_bgj
|
|
* @property string $stunden_insg
|
|
* @property string $szjgst
|
|
* @property string $szgst_klassen
|
|
* @property string $szjgst_schueler
|
|
* @property string $d_regierung
|
|
* @property string $d_mb
|
|
* @property string $d_schulamt
|
|
* @property \Cake\I18n\Time $created
|
|
* @property \Cake\I18n\Time $modified
|
|
*/
|
|
class Office extends Entity
|
|
{
|
|
|
|
/**
|
|
* Fields that can be mass assigned using newEntity() or patchEntity().
|
|
*
|
|
* Note that when '*' is set to true, this allows all unspecified fields to
|
|
* be mass assigned. For security purposes, it is advised to set '*' to false
|
|
* (or remove it), and explicitly make individual fields accessible as needed.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $_accessible = [
|
|
'*' => true,
|
|
'id' => false
|
|
];
|
|
}
|