Protable.php 267 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. use think\Model;
  5. /**
  6. * 地区数据模型
  7. */
  8. class Protable extends Model
  9. {
  10. protected $name = 'protable';
  11. public function getImageAttr($value)
  12. {
  13. return config('site.httpurl').$value;
  14. }
  15. }