Browse Source

取消获取器

linwu 4 months ago
parent
commit
bac1d95478
1 changed files with 0 additions and 10 deletions
  1. 0 10
      app/Models/PostAppoint.php

+ 0 - 10
app/Models/PostAppoint.php

@@ -19,14 +19,4 @@ class PostAppoint extends Model
     {
     {
         return $this->hasOne(Jobs::class, 'id', 'job_id');
         return $this->hasOne(Jobs::class, 'id', 'job_id');
     }
     }
-
-    public function getStatusTextAttribute($value)
-    {
-        return $value == 0 ? '未下载' : '已下载';
-    }
-
-    public function getSexTextAttribute($value)
-    {
-        return $value == 0 ? '未下载' : '已下载';
-    }
 }
 }