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: 16:03
- */
-
- namespace app\admin\dao;
-
-
- use app\admin\command\Util;
- use app\admin\model\CfSuplierInfo;
- use think\Exception;
-
- class CfSuplierInfoDao
- {
- /**
- * 获取供应商详情
- * @param int $id
- * @return array
- */
- public function getInfoById(int $id) {
- try{
- $model = new CfSuplierInfo();
- $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());
- }
- }
- }
|