You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.6 KiB
69 lines
1.6 KiB
|
|
<?php
|
|
|
|
class item
|
|
{
|
|
public $seq="";
|
|
public $employee_no = "";
|
|
public $name = "";
|
|
public $mfg_no = "";
|
|
public $fire;
|
|
public $screen;
|
|
public $special_use;
|
|
public $open_lengthen ;
|
|
public $fully_loaded;
|
|
public $returning;
|
|
public $customer = "";
|
|
public $spec = "";
|
|
public $type = "";
|
|
public $running = "";
|
|
public $panel_battery = ' ';
|
|
public $panel_no = "";
|
|
public $motor = "";
|
|
public $door = "";
|
|
public $hoisting_machine = "";
|
|
public $electrocircuit = "";
|
|
public $opb = "";
|
|
public $ind = "";
|
|
public function __construct($seq){
|
|
$this->seq=$seq;
|
|
$this->fire = new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "#";
|
|
public $desc = "";
|
|
};
|
|
$this->screen = new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "#";
|
|
public $desc = "";
|
|
};
|
|
|
|
$this->special_use = new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "";
|
|
public $desc = "";
|
|
};
|
|
$this->open_lengthen = new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "#";
|
|
public $desc = "";
|
|
};
|
|
$this->fully_loaded = new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "#";
|
|
public $desc = "";
|
|
};
|
|
$this->returning= new class
|
|
{
|
|
public $colname = "";
|
|
public $icon = "#";
|
|
public $desc = "";
|
|
};
|
|
|
|
}
|
|
}
|
|
|