finished basic AddressDB view

This commit is contained in:
Frank Schubert
2023-01-04 16:38:37 +01:00
parent 6ff01cf0d9
commit 3ff5353fdd
7 changed files with 26 additions and 17 deletions

View File

@@ -1,15 +1,16 @@
<?php
class NetworkModel {
public $name = null;
public $owner_id = null;
public $sytemowner_action_status = null;
public $note = null;
public $name;
public $owner_id ;
public $adb_netzgebiet_id;
public $sytemowner_action_status;
public $note;
public $create_by = null;
public $edit_by = null;
public $create = null;
public $edit = null;
public $create_by;
public $edit_by;
public $create;
public $edit;
public static function create(Array $data) {