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.
33 lines
791 B
33 lines
791 B
<?php
|
|
require_once 'Model.php';
|
|
class ConMaintanceExamineClearModel extends Model
|
|
{
|
|
protected $table = 'con_maintance_examine_clear';
|
|
public $fillable = [
|
|
'apply_key',
|
|
'register_code',
|
|
'elevator_brand',
|
|
'elevator_kind',
|
|
'spec',
|
|
'weight',
|
|
'speed',
|
|
'stop',
|
|
'floors',
|
|
'persons',
|
|
'elevator_num',
|
|
'useful_years',
|
|
'last_check_date',
|
|
'speed_governors_check_expense',
|
|
'maintain_times',
|
|
'is_m1_bundle',
|
|
'maintain_months',
|
|
'maintain_period',
|
|
'stand_price',
|
|
'contract_price',
|
|
'sold_price',
|
|
// 'commission_expense',
|
|
//// 'management_expense',
|
|
'annual_survey_expense',
|
|
// 'service_expense',
|
|
];
|
|
}
|
|
|