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.

17 satır
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. }