| 1234567891011121314151617181920 |
- <?php
- namespace hd\controllers;
- use biz\ghs\classes\GhsClass;
- use common\components\util;
- class GhsController extends BaseController
- {
- //供货商列表 ssh 2021.1.24
- public function actionList()
- {
- $where = [];
- $where['sjId'] = $this->sjId;
- $respond = GhsClass::getGhsList($where);
- util::success($respond);
- }
- }
|