调整城镇返回

dev
vine_liutk 2022-10-28 11:22:13 +08:00
parent a943c3054c
commit c62573d69e
1 changed files with 2 additions and 2 deletions

View File

@ -22,9 +22,9 @@ class AgriculturalBaseResource extends JsonResource
'address_lng' => $this->address_lng ?? '', 'address_lng' => $this->address_lng ?? '',
'description' => $this->description ?? '', 'description' => $this->description ?? '',
'map' => $this->map ?? '', 'map' => $this->map ?? '',
'areas' => ($this->areas ?? 0.00).' 亩',//占地面积 'areas' => ($this->areas ?? 0.00),//占地面积
'workforce' => $this->workforce ?? 0,//人数 'workforce' => $this->workforce ?? 0,//人数
'cultivated' =>$this->cultivated ?? 0, 'cultivated' =>$this->cultivated ?? 0,//种养殖面积
]; ];
} }
} }