| 1234567891011121314151617181920 |
- <?php
- namespace pt\controllers;
- use biz\item\classes\UnitClass;
- use common\components\util;
- use Yii;
- class UnitController extends BaseController
- {
- //取所有的单位 ssh 2021.4.10
- public function actionGetAllUnit()
- {
- $where = [];
- $list = UnitClass::getAllList(['id','name'], $where);
- util::success(['list'=>$list]);
- }
- }
|