| 12345678910111213141516171819 |
- <?php
- namespace ghs\controllers;
- use bizGhs\merchant\classes\WlClass;
- use Yii;
- use common\components\util;
- class WlController extends BaseController
- {
- //获取所有物流 ssh 20230104
- public function actionGetAllList()
- {
- $list = WlClass::getAllByCondition(['mainId' => $this->mainId], null, '*');
- util::success(['list' => $list]);
- }
- }
|