diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-10-02 09:26:54 +0000 |
| commit | eb19fa6a076a8d211cd483afb01eeda6172d27e4 (patch) | |
| tree | 3eb6355b6918ceb0e2c9978cb5d98cb9f4458640 /lib/models/StatusgruppeUser.php | |
| parent | fe64b827e2e503085c6f596eeed08d6ece36624b (diff) | |
fixes #3225
Closes #3225
Merge request studip/studip!2186
Diffstat (limited to 'lib/models/StatusgruppeUser.php')
| -rw-r--r-- | lib/models/StatusgruppeUser.php | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/lib/models/StatusgruppeUser.php b/lib/models/StatusgruppeUser.php index 44fda26..7bd3133 100644 --- a/lib/models/StatusgruppeUser.php +++ b/lib/models/StatusgruppeUser.php @@ -15,14 +15,22 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * - * @property string statusgruppe_id database column - * @property string user_id database column - * @property string position database column - * @property string visible database column - * @property string inherit database column - * @property string id computed column read/write - * @property Statusgruppen group belongs_to Statusgruppen - * @property User user belongs_to User + * @property array $id alias for pk + * @property string $statusgruppe_id database column + * @property string $user_id database column + * @property int $position database column + * @property int $visible database column + * @property int $inherit database column + * @property int|null $mkdate database column + * @property SimpleORMapCollection|DatafieldEntryModel[] $datafields has_many DatafieldEntryModel + * @property Statusgruppen $group belongs_to Statusgruppen + * @property User $user belongs_to User + * @property mixed $vorname additional field + * @property mixed $nachname additional field + * @property mixed $username additional field + * @property mixed $email additional field + * @property mixed $title_front additional field + * @property mixed $title_rear additional field */ class StatusgruppeUser extends SimpleORMap implements PrivacyObject { |
