1234567891011121314151617181920 |
- <?php
- namespace App\Models;
- /**
- * Created by PhpStorm.
- * User: durong
- * Date: 2019/6/17
- * Time: 下午12:11
- */
- class PlatformContent extends BaseModel
- {
- protected $table = 'platform_content';
- /**
- * 可被批量赋值的字段
- * @var array
- */
- protected $fillable = ['title','content'];
- }
|