123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- declare (strict_types=1);
- namespace app\dao\wechat;
- use think\model;
- use app\dao\BaseDao;
- use app\model\wechat\WechatCard;
- class WechatCardDao extends BaseDao
- {
- protected function setModel(): string
- {
- return WechatCard::class;
- }
-
- public function getList(array $where, int $page = 0, int $limit = 0)
- {
- return $this->search($where)->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->select()->toArray();
- }
- }
|