1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Modules\OfficialAccount\Services;
- use App\Modules\OfficialAccount\Models\CustomSendDayStats;
- use App\Modules\OfficialAccount\Models\CustomSendStats;
- class CustomSendStatsService
- {
-
- static function customSendDayStatsByChannelAndFrom($distribution_channel_id,$from)
- {
- return CustomSendDayStats::customSendDayStatsByChannelAndFrom($distribution_channel_id,$from);
- }
-
- static function customSendStatsByChannelAndFrom($distribution_channel_id,$from)
- {
- return CustomSendStats::customSendStatsByChannelAndFrom($distribution_channel_id,$from);
- }
- }
|