hasMany(\app\common\model\quotation\QuotationDetail::class, 'quotation_id', 'id'); } public function custom() { return $this->belongsTo(\app\common\model\custom\Custom::class, 'customer_id'); } /** * @notes 关联org * @return \think\model\relation\HasOne * @author likeadmin * @date 2023/12/20 11:01 */ public function org() { return $this->hasOne(\app\common\model\dept\Orgs::class, 'id', 'org_id'); } /** * @notes 关联dept * @return \think\model\relation\HasOne * @author likeadmin * @date 2023/12/20 11:01 */ public function dept() { return $this->hasOne(\app\common\model\dept\Dept::class, 'id', 'dept_id'); } }