| New file |
| | |
| | | package cn.gistack.sm.sjztmd.service.impl; |
| | | |
| | | import cn.gistack.sm.sjztmd.entity.YwFloodReportInfo; |
| | | import cn.gistack.sm.sjztmd.mapper.YwFloodReportInfoMapper; |
| | | import cn.gistack.sm.sjztmd.service.IYwFloodReportInfoService; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springblade.core.mp.base.BaseServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * @Author AIX |
| | | * @Date 2024/7/8 12:45 |
| | | * @Version 1.0 |
| | | */ |
| | | @Service |
| | | @AllArgsConstructor |
| | | public class YwFloodReportInfoServiceImpl extends BaseServiceImpl<YwFloodReportInfoMapper, YwFloodReportInfo> implements IYwFloodReportInfoService { |
| | | @Override |
| | | public YwFloodReportInfo getLatestReport(String oneDayBefore) { |
| | | return baseMapper.getLatestReport(oneDayBefore); |
| | | } |
| | | } |