/**
     * 一对一关联
     * 供货商ID关联供货商名称
     * @return \think\model\relation\HasOne
     */
    public function SuppName()
    {
  // hasOne(要调用的模型名称, 关联模型外键, 当前模型主键)->bind(['要返回的字段名称' => '要返回的当前模型表字段名']])
        return $this->hasOne(Supplier::class, 'supplier_co_id', 'Supp_id')->bind(['co_name' => 'co_name']);

    }
   public function getShippingList(array $where, int $page, int $limit)
    {
        return $this->search($where)
            ->with(['suppName'])
            ->order('sort DESC,id DESC')->page($page, $limit)->select()->toArray();
    }
Last modification:November 18, 2023
反正也没人会打赏