12345678910111213 |
- <?php
- namespace Modules\ContentManage\Models;
- class BookChapterContents extends BaseModel
- {
- protected $table = 'book_chapter_contents';
- protected $fillable = [
- 'id', 'bid', 'chapter_name', 'content', 'created_at', 'updated_at',
- ];
- }
|