CashController.php 347 B

12345678910111213141516171819
  1. <?php
  2. namespace hd\controllers;
  3. use biz\sj\classes\CashClass;
  4. use common\components\util;
  5. class CashController extends BaseController
  6. {
  7. //客户列表 shish 2019.11.30
  8. public function actionList()
  9. {
  10. $where = ['shopId' => $this->shopId];
  11. $list = CashClass::getCashList($where);
  12. util::success($list);
  13. }
  14. }