1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Modules\UserTask\Models;
- use App\Modules\TableSuffix;
- use Illuminate\Database\Eloquent\Model;
- class ChapterOrder extends Model
- {
- use TableSuffix;
- protected $connection = 'chapter_order_mysql';
- protected $fillable = [
- 'distribution_channel_id',
- 'bid',
- 'cid',
- 'chapter_name',
- 'book_name',
- 'uid',
- 'u',
- 'fee',
- 'book_name',
- 'send_order_id',
- 'charge_balance',
- 'reward_balance'
- ];
- protected $table = 'chapter_orders';
- public static function model(int $uid)
- {
- self::suffix($uid % 512);
- return new static;
- }
- }
|