| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Module\Dev\Models;
- use Illuminate\Database\Eloquent\Model;
- /**
- * App\Module\Dev\Models\Dev
- *
- * field start
- * field end
- */
- class Dev extends Model
- {
- /**
- * 与模型关联的表名
- *
- * @var string
- */
- protected $table = 'dev';
- // attrlist start
- protected $fillable = [
- ];
- // attrlist end
- /**
- * 可批量赋值的属性
- *
- * @var array
- */
- protected $fillable = [
- 'name',
- 'description',
- 'status'
- ];
- /**
- * 模型的主键
- *
- * @var string
- */
- protected $primaryKey = 'id';
- }
|