12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Modules\Finance\Services;
- use App\Modules\Finance\Models\PaymentStatistic;
- class PaymentStatisticService
- {
-
- public static function addPaymentStatistics($data = []) {
- $result = PaymentStatistic::create($data);
- return $result;
- }
-
- public static function getGroupByDayDataStatistic($start_time = '', $end_time = '', $isAll = false) {
- return PaymentStatistic::getGroupByDayDataStatistic($start_time, $end_time, $isAll);
- }
- }
|