17 lines
222 B
PHP
17 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
namespace Garradin\Plugin\Materiels;
|
||
|
|
||
|
use Garradin\DB;
|
||
|
|
||
|
class Equipment
|
||
|
{
|
||
|
protected $columns_order = array(
|
||
|
'id',
|
||
|
'category_id',
|
||
|
'localisation_id',
|
||
|
'number_of_equipments',
|
||
|
'designation'
|
||
|
);
|
||
|
}
|