Park.php 170 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. use think\Model;
  5. /**
  6. * 地区数据模型
  7. */
  8. class Park extends Model
  9. {
  10. protected $name = 'park_lists';
  11. }