| 1 | <?php |
||
| 9 | class Contact extends CustomizableEntity |
||
| 10 | { |
||
| 11 | public $id; |
||
| 12 | public $name; |
||
| 13 | public $created_at; |
||
| 14 | public $updated_at; |
||
| 15 | public $responsible_user_id; |
||
| 16 | public $created_by; |
||
| 17 | public $company_name; |
||
| 18 | public $tags; |
||
| 19 | public $leads_id; |
||
| 20 | public $customers_id; |
||
| 21 | public $company_id; |
||
| 22 | |||
| 23 | protected $fieldList = [ |
||
| 24 | 'id', 'name', 'created_at', 'updated_at', |
||
| 25 | 'responsible_user_id', 'created_by', 'company_name', |
||
| 26 | 'tags', 'leads_id', 'customers_id', 'company_id', |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param $array |
||
| 31 | */ |
||
| 32 | 2 | public function set($array) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @param $id |
||
| 39 | */ |
||
| 40 | 1 | public function linkLeadById($id) |
|
| 44 | } |