ToolAvoidPit.php 219 B

1234567891011121314
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class ToolAvoidPit extends Model
  5. {
  6. public function getTypeAttr($value)
  7. {
  8. $type = config('app.params.avoid_pit_type');
  9. return $type[$value];
  10. }
  11. }