WlController.php 372 B

12345678910111213141516171819
  1. <?php
  2. namespace ghs\controllers;
  3. use bizGhs\merchant\classes\WlClass;
  4. use Yii;
  5. use common\components\util;
  6. class WlController extends BaseController
  7. {
  8. //获取所有物流 ssh 20230104
  9. public function actionGetAllList()
  10. {
  11. $list = WlClass::getAllByCondition(['mainId' => $this->mainId], null, '*');
  12. util::success(['list' => $list]);
  13. }
  14. }