12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- declare (strict_types=1);
- namespace app\services\user;
- use app\services\BaseServices;
- use app\dao\user\UserUserBrokerageDao;
- class UserUserBrokerageServices extends BaseServices
- {
-
- public function __construct(UserUserBrokerageDao $dao)
- {
- $this->dao = $dao;
- }
-
- public function getBrokerageList(array $where, string $field = '*', string $order = '', int $limit = 0)
- {
- if ($limit) {
- [$page] = $this->getPageValue();
- } else {
- [$page, $limit] = $this->getPageValue();
- }
- $list = $this->dao->getList($where, $field, $order, $page, $limit);
- $count = $this->dao->getCount($where);
- return [$count, $list];
- }
- }
|