Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?php
- /**
- * Created by PhpStorm.
- * User: nizongfeng
- * Date: 2021/11/4
- * Time: 15:49
- */
-
- namespace app\admin\service;
-
-
- use app\admin\command\Util;
- use app\admin\model\Admin;
- use think\Exception;
-
- class AdminDao
- {
- /**
- * 获取管理员信息
- * @param int $id
- * @return array
- */
- public function getInfoById($id) {
- try{
- $model = new Admin();
- $info = $model->where(["id"=>$id])->find();
- if ($info == null) {
- return Util::returnArrEr("获取管理员信息失败:".$id);
- }
- return Util::returnArrSu("",$info->toArray());
- }catch (Exception $e){
- return Util::returnArrEr("获取管理员信息失败:".$e->getMessage());
- }
- }
- }
|