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.
80 lines
2.3 KiB
80 lines
2.3 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\dao\user;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\user\User;
|
|
use app\model\user\UserBill;
|
|
|
|
|
|
/**
|
|
*
|
|
* Class UserUserBillDao
|
|
* @package app\dao\user
|
|
*/
|
|
class UserUserBillDao extends BaseDao
|
|
{
|
|
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return User::class;
|
|
}
|
|
|
|
public function joinModel(): string
|
|
{
|
|
return UserBill::class;
|
|
}
|
|
|
|
/**
|
|
* 关联模型
|
|
* @param string $alias
|
|
* @param string $join_alias
|
|
* @return \crmeb\basic\BaseModel
|
|
*/
|
|
public function getModel(string $alias = 'u', string $join_alias = 'b', $join = 'left')
|
|
{
|
|
$this->alias = $alias;
|
|
$this->join_alis = $join_alias;
|
|
/** @var $userBiil $userBiil */
|
|
$userBiil = app()->make($this->joinModel());
|
|
$table = $userBiil->getName();
|
|
return parent::getModel()->join($table . ' ' . $join_alias, $alias . '.uid = ' . $join_alias . '.uid', $join)->alias($alias);
|
|
}
|
|
|
|
/**
|
|
* 组合条件模型查询列表
|
|
* @param Model $model
|
|
* @return array
|
|
*/
|
|
public function getList(array $where, string $field = '', string $order = '', int $page = 0, int $limit = 0)
|
|
{
|
|
return $this->getModel()->where($where)->field($field)->group('u.uid')->order($order)->order('id desc')
|
|
->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->select()->toArray();
|
|
}
|
|
|
|
/**
|
|
* 获取条数
|
|
* @param array $where
|
|
* @return mixed
|
|
*/
|
|
public function getCount(array $where)
|
|
{
|
|
return $this->getModel()->where($where)->group('u.uid')->count();
|
|
}
|
|
}
|
|
|