1234567891011121314151617181920 |
- <?php
- /**
- * ${CARET} 平台版权书籍白名单
- * @file:BookCopyright.php
- * @Created by gnitif
- * @Date: 2022/11/14
- * @Time: 16:54
- */
- namespace App\Modules\Book\Models;
- use Illuminate\Database\Eloquent\Model;
- class BookCopyright extends Model
- {
- protected $table = 'copyright_bids';
- protected $fillable = ['id','distribution_channel_id','bid','type','plantform','is_enabled'];
- }
|