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.
35 lines
736 B
35 lines
736 B
<?php
|
|
require_once 'Model.php';
|
|
class HopeElevatorCustomerModel extends Model
|
|
{
|
|
protected $table = 'hope_elevator_customer';
|
|
public $fillable = [
|
|
'vol_no',
|
|
'customer_no',
|
|
'customer',
|
|
'manager',
|
|
'source',
|
|
'linkman',
|
|
'lm_tel',
|
|
'salesman_name',
|
|
'uscc',
|
|
'salesman',
|
|
'num',
|
|
'pre_order_date',
|
|
'status',
|
|
'progress_status',
|
|
'recently_status',
|
|
'next_visit_date',
|
|
'address',
|
|
'tel',
|
|
'mail',
|
|
'quote_date',
|
|
'is_renovation',
|
|
'file',
|
|
'introducer',
|
|
'company',
|
|
'case_name',
|
|
'customer_type',
|
|
'creater_name',
|
|
'creater'];
|
|
}
|
|
|