| 12345678910111213141516171819 |
- <?php
- namespace ghs\controllers;
- use biz\sj\classes\CashClass;
- use common\components\util;
- class CashController extends BaseController
- {
- //客户列表 shish 2019.11.30
- public function actionList()
- {
- $where = ['shopId' => $this->shopId];
- $list = CashClass::getCashList($where);
- util::success($list);
- }
- }
|