package com.hivekion.environment.service.impl; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.hivekion.environment.entity.SimtoolWeather; import com.hivekion.environment.mapper.SimtoolWeatherMapper; import com.hivekion.environment.service.SimtoolWeatherService; import java.util.List; import org.springframework.stereotype.Service; /** *

* 服务实现类 *

* * @author liDongYu * @since 2025-08-28 */ @Service public class SimtoolWeatherServiceImpl extends ServiceImpl implements SimtoolWeatherService { @Override public List list(SimtoolWeather weather) { return this.baseMapper.list(weather); } @Override public Long count(SimtoolWeather weather) { return this.baseMapper.count(weather); } @Override public List queryByScenarioUuid(String scenarioUuid) { QueryWrapper queryWrapper = new QueryWrapper(); queryWrapper.eq("scenario_uuid", scenarioUuid); return this.list(queryWrapper); } }