ChapterContentModel.php 299 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2020/12/25
  6. * Time: 16:47
  7. */
  8. namespace App\Models\ZwContent;
  9. use Illuminate\Database\Eloquent\Model;
  10. class ChapterContentModel extends Model
  11. {
  12. protected $connection = 'zw_content_mysql';
  13. protected $table = 'chapter_contents';
  14. }