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.
20 lines
403 B
20 lines
403 B
<?php
|
|
require_once 'Model.php';
|
|
class HopeProjectElevatorSpecModel extends Model
|
|
{
|
|
protected $table = 'hope_project_elevator_spec';
|
|
public $fillable = [
|
|
'vol_no',
|
|
'seq',
|
|
'specifications',
|
|
'person',
|
|
//'weight',
|
|
'stop',
|
|
'open',
|
|
'speed',
|
|
'spec_num',
|
|
'spec_price',
|
|
'summary_price',
|
|
'creator',
|
|
];
|
|
}
|
|
|