Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

17 linhas
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. }