Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace App\Models\HtpmsCustomer\Existing;
-
- use Illuminate\Database\Eloquent\Model;
-
- class Parking extends Model
- {
- const COL_NAME_PARKING_MANAGEMENT_CODE = 'park_code';
- const COL_NAME_PARKING_NAME = 'park_name';
-
- protected $connection = 'htpms_customer';
- protected $table = 'tbl_park';
- protected $fillable = []; // 参照専用
-
- }
|