BookCopyright.php 396 B

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