UnitController.php 370 B

1234567891011121314151617181920
  1. <?php
  2. namespace ghs\controllers;
  3. use biz\item\classes\UnitClass;
  4. use common\components\util;
  5. use Yii;
  6. class UnitController extends BaseController
  7. {
  8. //取所有的单位 ssh 2021.4.10
  9. public function actionGetAllUnit()
  10. {
  11. $where = [];
  12. $list = UnitClass::getAllList(['id', 'name'], $where);
  13. util::success(['list' => $list]);
  14. }
  15. }