ForceSubscribeDelayMsg.php 569 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: z-yang
  5. * Date: 2020/2/6
  6. * Time: 22:06
  7. */
  8. namespace General\Models\OfficialAccount;
  9. use Illuminate\Database\Eloquent\Model;
  10. class ForceSubscribeDelayMsg extends Model
  11. {
  12. protected $table = 'force_subscribe_delay_msg';
  13. protected $fillable = [
  14. 'id',
  15. 'distribution_channel_id',
  16. 'title',
  17. 'link',
  18. 'icon',
  19. 'desc',
  20. 'time_delay',
  21. 'is_enable',
  22. 'is_show',
  23. 'user_type',
  24. 'chapter_name',
  25. 'book_name',
  26. 'link_type'
  27. ];
  28. }