Bladeren bron

人才库

xieruidong 2 jaren geleden
bovenliggende
commit
63391ae9a5

+ 1 - 1
app/data/controller/api/Auth.php

@@ -63,7 +63,7 @@ abstract class Auth extends Controller
      * 获取用户数据
      * @return array
      */
-    protected function getUser(): array
+    protected function getUser()
     {
         try {
             if (empty($this->uuid)) {

+ 1 - 0
app/data/controller/api/auth/Center.php

@@ -40,6 +40,7 @@ class Center extends Auth
      * @Returned("maintenance",desc="提交的维修工申请,为空则未提交")
      * @Returned("maintenance.audit",desc="维修工申请审核状态1:待审核 2:审核通过 3:审核不通过")
      * @Returned("maintenance.why",desc="维修工申请审核不通过原因")
+     * @Returned("maintenance.why",desc="维修工申请审核不通过原因")
      */
     public function get()
     {

+ 1 - 1
app/data/model/DataUser.php

@@ -31,7 +31,7 @@ class DataUser extends Model
         }
     }
 
-    public function talent(){
+    public function pooltalent(){
         return $this->hasOne(DataPoolTalent::class,'uuid');
     }
 }

+ 2 - 2
app/data/service/UserAdminService.php

@@ -80,7 +80,7 @@ class UserAdminService extends Service
      * @throws \think\db\exception\DbException
      * @throws \think\db\exception\ModelNotFoundException
      */
-    public static function get(int $uuid, string $type): array
+    public static function get(int $uuid, string $type)
     {
         $map = ['id' => $uuid, 'deleted' => 0];
         $user = DataUser::mk()->where($map)->findOrEmpty();
@@ -92,7 +92,7 @@ class UserAdminService extends Service
             if (empty($state) || empty($access)) throw new Exception($message);
         }
         $user['token'] = ['token' => $access['token'], 'expire' => $access['time']];
-        return $user->hidden(['deleted', 'password'])->toArray();
+        return $user->hidden(['deleted', 'password']);
     }
 
     /**