Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
360B

  1. <?php
  2. namespace App\Models\HtpmsCustomer\Existing;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Parking extends Model
  5. {
  6. const COL_NAME_PARKING_MANAGEMENT_CODE = 'park_code';
  7. const COL_NAME_PARKING_NAME = 'park_name';
  8. protected $connection = 'htpms_customer';
  9. protected $table = 'tbl_park';
  10. protected $fillable = []; // 参照専用
  11. }