停车场管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
572 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ParkingElectronicMap extends Model
{
use HasFactory;
protected $table = 'parking_electronic_map';
protected $fillable = [
'floor_id',
'space_id',
'width',
'height',
'coordinate_x',
'coordinate_y',
'min_width',
'min_height',
'keep_aspect_ratio',
'aspect_ratio'
];
protected $hidden = [
'created_at',
'updated_at'
];
}