OutputChannel.php 438 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Modules\ContentManage\Models\Output;
  3. use Modules\ContentManage\Models\BaseModel;
  4. class OutputChannel extends BaseModel
  5. {
  6. protected $primaryKey = 'id';
  7. protected array $defaultHidden = [];
  8. protected array $defaultCasts = [];
  9. protected $table = 'book_output_channels';
  10. protected $fillable = [
  11. 'id', 'channel_name','remark', 'api_key', 'is_enabled', 'created_at', 'updated_at',
  12. ];
  13. }