PlatformContent.php 322 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * Created by PhpStorm.
  5. * User: durong
  6. * Date: 2019/6/17
  7. * Time: 下午12:11
  8. */
  9. class PlatformContent extends BaseModel
  10. {
  11. protected $table = 'platform_content';
  12. /**
  13. * 可被批量赋值的字段
  14. * @var array
  15. */
  16. protected $fillable = ['title','content'];
  17. }