| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Services;
- use App\Unit;
- use App\Traits\ServiceAppAop;
- class UnitService
- {
- use ServiceAppAop;
- protected $modelClass=Unit::class;
- /*
- * array | string $column
- * 默认一些select字段,可传递string 或 array来指定select字段
- * */
- public function getSelection($column = ['id','name']){
- if (!is_array($column)) {
- $column = [$column];
- }
- return Unit::query()->orderBy("sequence")->select($column)->get();
- }
- }
|