GhsController.php 363 B

1234567891011121314151617181920
  1. <?php
  2. namespace hd\controllers;
  3. use biz\ghs\classes\GhsClass;
  4. use common\components\util;
  5. class GhsController extends BaseController
  6. {
  7. //供货商列表 ssh 2021.1.24
  8. public function actionList()
  9. {
  10. $where = [];
  11. $where['sjId'] = $this->sjId;
  12. $respond = GhsClass::getGhsList($where);
  13. util::success($respond);
  14. }
  15. }