酒店预订平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

Area.php 269 B

3 yıl önce
123456789101112131415
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Area extends Model
  5. {
  6. // 开启自动写入时间戳字段
  7. protected $autoWriteTimestamp = false;
  8. // 定义时间戳字段名
  9. protected $createTime = false;
  10. protected $updateTime = false;
  11. }