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