12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace App\Modules\Book\Services;
- use App\Modules\Book\Models\BookSpecialChannel;
- class BookSpecialChannelService
- {
-
- public static function addSpecialChannle($bid, $channels)
- {
- return BookSpecialChannel::addSpecialChannle($bid,$channels);
- }
-
- public static function clearSpecialChannle($bid)
- {
- return BookSpecialChannel::clearSpecialChannle($bid);
- }
-
- public static function getChannelsByBid($bid)
- {
- return BookSpecialChannel::getChannelsByBid($bid);
- }
-
- public static function getBids($channel_user_id)
- {
- return BookSpecialChannel::getBids($channel_user_id);
- }
- }
|