You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
822 B
35 lines
822 B
10 months ago
|
<?php
|
||
|
|
||
|
namespace app\dao\user;
|
||
|
|
||
|
use app\dao\BaseDao;
|
||
|
use app\model\user\UserCancel;
|
||
|
|
||
|
class UserCancelDao extends BaseDao
|
||
|
{
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function setModel(): string
|
||
|
{
|
||
|
return UserCancel::class;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取列表
|
||
|
* @param $where
|
||
|
* @param int $page
|
||
|
* @param int $limit
|
||
|
* @return array
|
||
|
* @throws \think\db\exception\DataNotFoundException
|
||
|
* @throws \think\db\exception\DbException
|
||
|
* @throws \think\db\exception\ModelNotFoundException
|
||
|
*/
|
||
|
public function getList($where, $page = 0, $limit = 0)
|
||
|
{
|
||
|
return $this->search($where)->with(['user'])
|
||
|
->when($page && $limit, function ($query) use ($page, $limit) {
|
||
|
$query->page($page, $limit);
|
||
|
})->select()->toArray();
|
||
|
}
|
||
|
}
|