1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace app\dao\store;
- use app\dao\BaseDao;
- use app\model\store\StoreUser;
- class StoreUserDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return StoreUser::class;
- }
-
- public function getList(array $where, string $field = '*', array $with = [], int $page = 0, int $limit = 0): array
- {
- return $this->search($where)->field($field)->when($with, function ($query) use ($with) {
- $query->with(['label']);
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->select()->toArray();
- }
-
- public function userTimeList(array $where, array $time, string $timeType = "week", string $countField = '*', string $sumField = 'pay_price', string $groupField = 'add_time')
- {
- return $this->getModel()->where($where)
- ->where($groupField, 'between time', $time)
- ->when($timeType, function ($query) use ($timeType, $countField, $sumField, $groupField) {
- switch ($timeType) {
- case "hour":
- $timeUnix = "%H";
- break;
- case "week" :
- $timeUnix = "%w";
- break;
- case "month" :
- $timeUnix = "%d";
- break;
- case "weekly" :
- $timeUnix = "%W";
- break;
- case "year" :
- $timeUnix = "%Y-%m";
- break;
- default:
- $timeUnix = "%m-%d";
- break;
- }
- $query->field("FROM_UNIXTIME(`" . $groupField . "`,'$timeUnix') as day,count(" . $countField . ") as count");
- $query->group('day');
- })->order('add_time asc')->select()->toArray();
- }
- }
|