Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
149
pro_v3.5.1/app/dao/user/UserExtractDao.php
Normal file
149
pro_v3.5.1/app/dao/user/UserExtractDao.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 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\UserExtract;
|
||||
|
||||
/**
|
||||
*
|
||||
* Class UserExtractDao
|
||||
* @package app\dao\user
|
||||
*/
|
||||
class UserExtractDao extends BaseDao
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置模型
|
||||
* @return string
|
||||
*/
|
||||
protected function setModel(): string
|
||||
{
|
||||
return UserExtract::class;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取列表
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @param int $page
|
||||
* @param int $limit
|
||||
* @param array $typeWhere
|
||||
* @return array
|
||||
*/
|
||||
public function getList(array $where, string $field = '*', array $with = [], int $page = 0, int $limit = 0)
|
||||
{
|
||||
return $this->search($where)->field($field)->when($with, function ($query) use ($with) {
|
||||
$query->with($with);
|
||||
})->when($page && $limit, function ($query) use ($page, $limit) {
|
||||
$query->page($page, $limit);
|
||||
})->order('id desc')->select()->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取某个条件的提现总和
|
||||
* @param array $where
|
||||
* @return float
|
||||
*/
|
||||
public function getWhereSum(array $where)
|
||||
{
|
||||
return $this->search($where)->field('(extract_price + extract_fee) as extract_price')->sum('extract_price');
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取某些条件总数组合列表
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @param string $key
|
||||
* @return mixed
|
||||
*/
|
||||
public function getWhereSumList(array $where, string $field = 'extract_price', string $key = 'uid')
|
||||
{
|
||||
return $this->search($where)->group($key)->column('(sum(extract_price) + sum(extract_fee)) as extract_price', $key);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取提现列表
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @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 getExtractList(array $where, string $field = '*', int $page = 0, int $limit = 0)
|
||||
{
|
||||
return $this->search($where)->field($field)->with([
|
||||
'user' => function ($query) {
|
||||
$query->field('uid,nickname');
|
||||
}])->page($page, $limit)->order('id desc')->select()->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取某个字段总和
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @return float
|
||||
*/
|
||||
public function getWhereSumField(array $where, string $field)
|
||||
{
|
||||
return $this->search($where)
|
||||
->when(isset($where['timeKey']), function ($query) use ($where) {
|
||||
$query->whereBetweenTime('add_time', $where['timeKey']['start_time'], $where['timeKey']['end_time']);
|
||||
})
|
||||
->sum($field);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据某字段分组查询
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @param string $group
|
||||
* @return mixed
|
||||
*/
|
||||
public function getGroupField(array $where, string $field, string $group)
|
||||
{
|
||||
return $this->search($where)
|
||||
->when(isset($where['timeKey']), function ($query) use ($where, $field, $group) {
|
||||
$query->whereBetweenTime('add_time', $where['timeKey']['start_time'], $where['timeKey']['end_time']);
|
||||
if ($where['timeKey']['days'] == 1) {
|
||||
$timeUinx = "%H";
|
||||
} elseif ($where['timeKey']['days'] == 30) {
|
||||
$timeUinx = "%Y-%m-%d";
|
||||
} elseif ($where['timeKey']['days'] == 365) {
|
||||
$timeUinx = "%Y-%m";
|
||||
} elseif ($where['timeKey']['days'] > 1 && $where['timeKey']['days'] < 30) {
|
||||
$timeUinx = "%Y-%m-%d";
|
||||
} elseif ($where['timeKey']['days'] > 30 && $where['timeKey']['days'] < 365) {
|
||||
$timeUinx = "%Y-%m";
|
||||
} else {
|
||||
$timeUinx = "%Y-%m";
|
||||
}
|
||||
$query->field("sum($field) as number,FROM_UNIXTIME($group, '$timeUinx') as time");
|
||||
$query->group("FROM_UNIXTIME($group, '$timeUinx')");
|
||||
})
|
||||
->order('add_time ASC')->select()->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $where
|
||||
* @param string $field
|
||||
* @return float
|
||||
*/
|
||||
public function getExtractMoneyByWhere(array $where, string $field)
|
||||
{
|
||||
return $this->search($where)->sum($field);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user