$this->id, 'name' => $this->name, 'address' => $this->address ?? '', 'person' => $this->person ?? '', 'address_lat' => $this->address_lat ?? '', 'address_lng' => $this->address_lng ?? '', 'description' => $this->description ?? '', 'map' => $this->map ?? '', 'areas' => ($this->areas ?? 0.00), //占地面积 'workforce' => $this->workforce ?? 0, //人数 'cultivated' => $this->cultivated ?? 0, //种养殖面积 'crops' => CropResource::collection($this->whenLoaded('crops')), 'devices' => DeviceResource::collection($this->whenLoaded('devices')), 'parent_id' => $this->parent_id ?? 0, 'sort' => $this->sort ?? 0, 'extends' => json_decode($this->extends ?? '') ?? [], 'total_output' => $this->whenLoaded('yieldLogs', function () { return $this->yield_logs_sum_output ?? 0; }, 0), 'industry_key'=>$this->industry_key, 'is_blank'=>$this->is_blank ?? 0, ]; } }