$params['device_id'], 'wind_direction' => $params['wind_direction'], 'wind_speed' => $params['wind_speed'], 'temperature' => $params['temperature'], 'moisture' => $params['moisture'], 'co2_content' => $params['co2_content'], 'pressure' => $params['pressure'], 'rainfall' => $params['rainfall'], 'light_intensity' => $params['light_intensity'], ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 编辑 * @param array $params * @return bool * @author likeadmin * @date 2023/11/24 16:49 */ public static function edit(array $params): bool { Db::startTrans(); try { AirMonitor::where('id', $params['id'])->update([ 'device_id' => $params['device_id'], 'wind_direction' => $params['wind_direction'], 'wind_speed' => $params['wind_speed'], 'temperature' => $params['temperature'], 'moisture' => $params['moisture'], 'co2_content' => $params['co2_content'], 'pressure' => $params['pressure'], 'rainfall' => $params['rainfall'], 'light_intensity' => $params['light_intensity'], ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除 * @param array $params * @return bool * @author likeadmin * @date 2023/11/24 16:49 */ public static function delete(array $params): bool { return AirMonitor::destroy($params['id']); } /** * @notes 获取详情 * @param $params * @return array * @author likeadmin * @date 2023/11/24 16:49 */ public static function detail($params): array { return AirMonitor::findOrEmpty($params['id'])->toArray(); } }