| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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 string
- */
- protected $primaryKey = 'id';
- }
|